From ffcf1df72849711b23ff1d184df69f01826edba9 Mon Sep 17 00:00:00 2001 From: Andrei Karas Date: Fri, 22 Jun 2012 02:24:53 +0300 Subject: Fix compilation warnings in windows builds. --- src/utils/copynpaste.cpp | 4 ++-- src/utils/mkdir.cpp | 2 +- src/utils/paths.cpp | 2 +- src/utils/process.cpp | 6 +++--- 4 files changed, 7 insertions(+), 7 deletions(-) (limited to 'src/utils') diff --git a/src/utils/copynpaste.cpp b/src/utils/copynpaste.cpp index a53e0b63f..1d2289600 100644 --- a/src/utils/copynpaste.cpp +++ b/src/utils/copynpaste.cpp @@ -106,7 +106,7 @@ bool sendBuffer(std::string& text) MultiByteToWideChar(CP_UTF8, 0, text.c_str(), -1, out, wCharsLen); - if (!OpenClipboard(0)) + if (!OpenClipboard(nullptr)) { GlobalUnlock(h); GlobalFree(h); @@ -284,7 +284,7 @@ bool sendBuffer(std::string& text) return false; } -#elif USE_X11 +#elif defined USE_X11 #include diff --git a/src/utils/mkdir.cpp b/src/utils/mkdir.cpp index 5eb1b0388..4632bec84 100644 --- a/src/utils/mkdir.cpp +++ b/src/utils/mkdir.cpp @@ -90,7 +90,7 @@ int mkdir_r(const char *pathname) return -1; } - if (!CreateDirectory(tmp2, 0)) + if (!CreateDirectory(tmp2, nullptr)) { // hack, hack. just assume that x: might be a drive // letter, and try again diff --git a/src/utils/paths.cpp b/src/utils/paths.cpp index 7cb600a1a..1a2ec1b5c 100644 --- a/src/utils/paths.cpp +++ b/src/utils/paths.cpp @@ -145,7 +145,7 @@ std::string getDesktopDir() if (dir.empty()) dir = getSpecialFolderLocation(CSIDL_DESKTOP); return dir; -#elif USE_X11 +#elif defined USE_X11 char *xdg = getenv("XDG_CONFIG_HOME"); std::string file; if (!xdg) diff --git a/src/utils/process.cpp b/src/utils/process.cpp index 0106c597d..2d64f3a37 100644 --- a/src/utils/process.cpp +++ b/src/utils/process.cpp @@ -37,7 +37,7 @@ const int timeOut = 10; #include -int execFile(std::string pathName, std::string name, +int execFile(std::string pathName, std::string name A_UNUSED, std::string arg1, std::string arg2, int waitTime) { if (!waitTime) @@ -53,8 +53,8 @@ int execFile(std::string pathName, std::string name, if (!arg2.empty()) args += " " + arg2; - if (CreateProcess(pathName.c_str(), (char*)args.c_str(), 0, 0, false, - CREATE_DEFAULT_ERROR_MODE, 0, 0, &siStartupInfo, + if (CreateProcess(pathName.c_str(), (char*)args.c_str(), nullptr, nullptr, + false, CREATE_DEFAULT_ERROR_MODE, nullptr, nullptr, &siStartupInfo, &piProcessInfo) != false) { if (!WaitForSingleObject(piProcessInfo.hProcess, timeOut * 1000)) -- cgit v1.2.3-60-g2f50