summaryrefslogtreecommitdiffstats
path: root/sandbox/tools
diff options
context:
space:
mode:
authormaruel@google.com <maruel@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2009-03-10 17:39:46 +0000
committermaruel@google.com <maruel@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2009-03-10 17:39:46 +0000
commit72d1e597c85fbf6b45756e3c753696370c48c042 (patch)
treed01609d62295e34aa3a5721d4109f815d0fd23ad /sandbox/tools
parent9475d1d189c03a0626c4855b38f6004bfe7c5bb8 (diff)
downloadchromium_src-72d1e597c85fbf6b45756e3c753696370c48c042.zip
chromium_src-72d1e597c85fbf6b45756e3c753696370c48c042.tar.gz
chromium_src-72d1e597c85fbf6b45756e3c753696370c48c042.tar.bz2
Slight code change to make some global variables const.
Fix >80 cols lines. Review URL: http://codereview.chromium.org/42013 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@11342 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'sandbox/tools')
-rw-r--r--sandbox/tools/finder/stdafx.h4
-rw-r--r--sandbox/tools/launcher/stdafx.h4
2 files changed, 4 insertions, 4 deletions
diff --git a/sandbox/tools/finder/stdafx.h b/sandbox/tools/finder/stdafx.h
index eb1e5f8..f5b821b 100644
--- a/sandbox/tools/finder/stdafx.h
+++ b/sandbox/tools/finder/stdafx.h
@@ -5,8 +5,8 @@
#ifndef SANDBOX_TOOLS_FINDER_STDAFX_H__
#define SANDBOX_TOOLS_FINDER_STDAFX_H__
-#ifndef _WIN32_WINNT // Allow use of features specific to Windows XP or later.
-#define _WIN32_WINNT 0x0501 // Change this to the appropriate value to target other versions of Windows.
+#ifndef _WIN32_WINNT
+#define _WIN32_WINNT 0x0501
#endif
#include <stdio.h>
diff --git a/sandbox/tools/launcher/stdafx.h b/sandbox/tools/launcher/stdafx.h
index 29742d7..297195c 100644
--- a/sandbox/tools/launcher/stdafx.h
+++ b/sandbox/tools/launcher/stdafx.h
@@ -5,8 +5,8 @@
#ifndef SANDBOX_TOOLS_LAUNCHER_STDAFX_H__
#define SANDBOX_TOOLS_LAUNCHER_STDAFX_H__
-#ifndef _WIN32_WINNT // Allow use of features specific to Windows XP or later.
-#define _WIN32_WINNT 0x0501 // Change this to the appropriate value to target other versions of Windows.
+#ifndef _WIN32_WINNT
+#define _WIN32_WINNT 0x0501
#endif
#include <stdio.h>