diff options
author | axis <qt-info@nokia.com> | 2009-11-09 09:36:29 (GMT) |
---|---|---|
committer | axis <qt-info@nokia.com> | 2009-11-09 12:33:41 (GMT) |
commit | c56b52a83ee5546c53d1e9e18216f91d097e1213 (patch) | |
tree | bec52b4bd02d10459d024ba9b24e25d83f9be6d3 | |
parent | 97c275332f4560183b4fc0384013e3757d23b32c (diff) | |
download | Qt-c56b52a83ee5546c53d1e9e18216f91d097e1213.zip Qt-c56b52a83ee5546c53d1e9e18216f91d097e1213.tar.gz Qt-c56b52a83ee5546c53d1e9e18216f91d097e1213.tar.bz2 |
Prevented compiler warning.
RevBy: Trust me
-rw-r--r-- | src/gui/kernel/qt_s60_p.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gui/kernel/qt_s60_p.h b/src/gui/kernel/qt_s60_p.h index 3405bcf..a1e760c 100644 --- a/src/gui/kernel/qt_s60_p.h +++ b/src/gui/kernel/qt_s60_p.h @@ -175,7 +175,7 @@ public: protected: // from MAknFadedComponent TInt CountFadedComponents() {return 1;} - CCoeControl* FadedComponent(TInt aIndex) {return this;} + CCoeControl* FadedComponent(TInt /*aIndex*/) {return this;} #else #warning No fallback implementation for QSymbianControl::FadeBehindPopup void FadeBehindPopup(bool /*fade*/){ } |