diff options
author | Clinton Stimpson <clinton@elemtech.com> | 2009-09-23 17:09:56 (GMT) |
---|---|---|
committer | Clinton Stimpson <clinton@elemtech.com> | 2009-09-23 17:09:56 (GMT) |
commit | 551fcc23c220fd75eaeea7671f28e8360e466b75 (patch) | |
tree | dabda97b2c0d417f81a5414a2121a1ef217d442a /Source/QtDialog/QCMakeCacheView.h | |
parent | 290a6e287056521b2f7e6144d7c45091f803d259 (diff) | |
download | CMake-551fcc23c220fd75eaeea7671f28e8360e466b75.zip CMake-551fcc23c220fd75eaeea7671f28e8360e466b75.tar.gz CMake-551fcc23c220fd75eaeea7671f28e8360e466b75.tar.bz2 |
fix compile warnings
Diffstat (limited to 'Source/QtDialog/QCMakeCacheView.h')
-rw-r--r-- | Source/QtDialog/QCMakeCacheView.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/QtDialog/QCMakeCacheView.h b/Source/QtDialog/QCMakeCacheView.h index 431cab0..2a64c6a 100644 --- a/Source/QtDialog/QCMakeCacheView.h +++ b/Source/QtDialog/QCMakeCacheView.h @@ -42,7 +42,7 @@ public: // get whether to show advanced entries bool showAdvanced() const; - QSize sizeHint(int) { return QSize(200,200); } + QSize sizeHint() const { return QSize(200,200); } public slots: // set whether to show advanced entries |