author | schurig <schurig> | 2004-09-10 11:59:05 (UTC) |
---|---|---|
committer | schurig <schurig> | 2004-09-10 11:59:05 (UTC) |
commit | ed70ec4945c7816ec6e899207ec8b99e20e10da5 (patch) (side-by-side diff) | |
tree | 1b0a8adab9c7398a799f628297ed9d45a591008f | |
parent | 501c17ed2bb97f2062cb11daddeb698a6a9f2828 (diff) | |
download | opie-ed70ec4945c7816ec6e899207ec8b99e20e10da5.zip opie-ed70ec4945c7816ec6e899207ec8b99e20e10da5.tar.gz opie-ed70ec4945c7816ec6e899207ec8b99e20e10da5.tar.bz2 |
removed some warnings
-rw-r--r-- | libopie/odevice.cpp | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/libopie/odevice.cpp b/libopie/odevice.cpp index 013f804..21070bf 100644 --- a/libopie/odevice.cpp +++ b/libopie/odevice.cpp @@ -1104,3 +1104,3 @@ bool Yopy::suspend() -bool Yopy::setDisplayBrightness(int bright) +bool Yopy::setDisplayBrightness(int /*bright*/) { @@ -1670,3 +1670,2 @@ void Zaurus::init ( ) - bool flipstate = false; switch ( d-> m_model ) { @@ -2369,3 +2368,3 @@ bool SIMpad::setLedState ( OLed l, OLedState st ) -bool SIMpad::filter ( int /*unicode*/, int keycode, int modifiers, bool isPress, bool autoRepeat ) +bool SIMpad::filter ( int /*unicode*/, int /*keycode*/, int /*modifiers*/, bool /*isPress*/, bool /*autoRepeat*/ ) { @@ -2430,3 +2429,3 @@ bool SIMpad::suspend ( ) // Must override because SIMpad does NOT have apm - struct timeval tvs, tvn; + struct timeval tvs; ::gettimeofday ( &tvs, 0 ); @@ -2452,3 +2451,2 @@ bool SIMpad::setDisplayStatus ( bool on ) bool res = false; - int fd; @@ -2783,2 +2781,3 @@ int Jornada::displayBrightnessResolution ( ) const { + return 255; } |