diff options
| author | Andreas Monzner <andreas.monzner@multimedia-labs.de> | 2005-12-08 17:09:51 +0000 |
|---|---|---|
| committer | Andreas Monzner <andreas.monzner@multimedia-labs.de> | 2005-12-08 17:09:51 +0000 |
| commit | b840d14b4c2c12e76af87fa3af784034e80bd0b4 (patch) | |
| tree | d28aa2b5555ce81be7435862fb6a8113efd3d2b9 /lib | |
| parent | 065d3ac0f19a6f2c61c3f8aa80a6cd8784ff7a7f (diff) | |
| download | enigma2-b840d14b4c2c12e76af87fa3af784034e80bd0b4.tar.gz enigma2-b840d14b4c2c12e76af87fa3af784034e80bd0b4.zip | |
small fixes
Diffstat (limited to 'lib')
| -rw-r--r-- | lib/gui/ewindow.cpp | 5 | ||||
| -rw-r--r-- | lib/gui/ewindow.h | 1 | ||||
| -rw-r--r-- | lib/service/iservice.h | 2 | ||||
| -rw-r--r-- | lib/service/servicedvb.cpp | 2 |
4 files changed, 9 insertions, 1 deletions
diff --git a/lib/gui/ewindow.cpp b/lib/gui/ewindow.cpp index 622e8b0a..54a35958 100644 --- a/lib/gui/ewindow.cpp +++ b/lib/gui/ewindow.cpp @@ -43,6 +43,11 @@ void eWindow::setTitle(const std::string &string) event(evtTitleChanged); } +std::string eWindow::getTitle() const +{ + return m_title; +} + void eWindow::setFlag(int flags) { m_flags |= flags; diff --git a/lib/gui/ewindow.h b/lib/gui/ewindow.h index 33ad7a72..a5b92eda 100644 --- a/lib/gui/ewindow.h +++ b/lib/gui/ewindow.h @@ -13,6 +13,7 @@ public: eWindow(eWidgetDesktop *desktop); ~eWindow(); void setTitle(const std::string &string); + std::string getTitle() const; eWidget *child() { return m_child; } enum { diff --git a/lib/service/iservice.h b/lib/service/iservice.h index eb04eadd..a195009a 100644 --- a/lib/service/iservice.h +++ b/lib/service/iservice.h @@ -52,6 +52,8 @@ public: std::string name; std::string getName() { return name; } + void setName( const std::string &n ) { name=n; } + eServiceReference() : type(idInvalid), flags(0) { diff --git a/lib/service/servicedvb.cpp b/lib/service/servicedvb.cpp index b3c15738..a9d235ec 100644 --- a/lib/service/servicedvb.cpp +++ b/lib/service/servicedvb.cpp @@ -106,7 +106,7 @@ RESULT eStaticServiceDVBBouquetInformation::getName(const eServiceReference &ref if ( bouquet && bouquet->m_bouquet_name.length() ) { - name = "[Bouquet] " + bouquet->m_bouquet_name; + name = bouquet->m_bouquet_name; return 0; } else |
