diff options
author | Qt Continuous Integration System <qt-info@nokia.com> | 2011-05-31 19:47:43 (GMT) |
---|---|---|
committer | Qt Continuous Integration System <qt-info@nokia.com> | 2011-05-31 19:47:43 (GMT) |
commit | 3cbf4e94d5c02eb97bd56fc65bf354024edc3413 (patch) | |
tree | 51bca1656e5a732e02706d5d0f3f4d0dd8a0a80d /src/gui/embedded/qwslock.cpp | |
parent | 271a96f201ebcd346bb532e207c1d0e465f89584 (diff) | |
parent | fc55c05b411bd7cbfe6f04e269e63b8b1319140a (diff) | |
download | Qt-3cbf4e94d5c02eb97bd56fc65bf354024edc3413.zip Qt-3cbf4e94d5c02eb97bd56fc65bf354024edc3413.tar.gz Qt-3cbf4e94d5c02eb97bd56fc65bf354024edc3413.tar.bz2 |
Merge branch 'master' of scm.dev.nokia.troll.no:qt/qt-earth-staging into master-integration
* 'master' of scm.dev.nokia.troll.no:qt/qt-earth-staging:
Fix build in C++0x mode
Diffstat (limited to 'src/gui/embedded/qwslock.cpp')
-rw-r--r-- | src/gui/embedded/qwslock.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/gui/embedded/qwslock.cpp b/src/gui/embedded/qwslock.cpp index 0d65b61..a64dc3d 100644 --- a/src/gui/embedded/qwslock.cpp +++ b/src/gui/embedded/qwslock.cpp @@ -114,7 +114,7 @@ QWSLock::~QWSLock() QWSSignalHandler::instance()->removeSemaphore(semId); } -static bool forceLock(int semId, int semNum, int) +static bool forceLock(int semId, unsigned short semNum, int) { int ret; do { @@ -135,7 +135,7 @@ static bool forceLock(int semId, int semNum, int) return (ret != -1); } -static bool up(int semId, int semNum) +static bool up(int semId, unsigned short semNum) { int ret; do { @@ -148,7 +148,7 @@ static bool up(int semId, int semNum) return (ret != -1); } -static bool down(int semId, int semNum) +static bool down(int semId, unsigned short semNum) { int ret; do { @@ -161,7 +161,7 @@ static bool down(int semId, int semNum) return (ret != -1); } -static int getValue(int semId, int semNum) +static int getValue(int semId, unsigned short semNum) { int ret; do { @@ -210,7 +210,7 @@ void QWSLock::unlock(LockType type) return; } - const int semNum = type; + const unsigned short semNum = type; int ret; do { sembuf sops = {semNum, 1, 0}; |