diff options
| author | Andreas Monzner <andreas.monzner@multimedia-labs.de> | 2006-06-07 09:14:45 +0000 |
|---|---|---|
| committer | Andreas Monzner <andreas.monzner@multimedia-labs.de> | 2006-06-07 09:14:45 +0000 |
| commit | 164779f4a960754a7d18d5947c43df1e26963a89 (patch) | |
| tree | 90e904bb517153c5c30762b598ec007174dadd6a | |
| parent | 1ea1344136bafa89159eacc25896d279dccda593 (diff) | |
| download | enigma2-164779f4a960754a7d18d5947c43df1e26963a89.tar.gz enigma2-164779f4a960754a7d18d5947c43df1e26963a89.zip | |
fix warnings
| -rw-r--r-- | lib/gdi/lcd.h | 4 | ||||
| -rw-r--r-- | lib/gui/elabel.h | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/lib/gdi/lcd.h b/lib/gdi/lcd.h index 11749c64..6ee4dbe7 100644 --- a/lib/gdi/lcd.h +++ b/lib/gdi/lcd.h @@ -52,8 +52,8 @@ public: ~eDBoxLCD(); #endif static eDBoxLCD *getInstance(); - int eDBoxLCD::setLCDContrast(int contrast); - int eDBoxLCD::setLCDBrightness(int brightness); + int setLCDContrast(int contrast); + int setLCDBrightness(int brightness); void setInverted( unsigned char ); void update(); }; diff --git a/lib/gui/elabel.h b/lib/gui/elabel.h index 471a4eec..84b2c5e4 100644 --- a/lib/gui/elabel.h +++ b/lib/gui/elabel.h @@ -10,7 +10,7 @@ public: void setText(const std::string &string); void setMarkedPos(int markedPos); void setFont(gFont *font); - gFont* eLabel::getFont(); + gFont* getFont(); enum { |
