small fixes
authorAndreas Monzner <andreas.monzner@multimedia-labs.de>
Thu, 8 Dec 2005 17:09:51 +0000 (17:09 +0000)
committerAndreas Monzner <andreas.monzner@multimedia-labs.de>
Thu, 8 Dec 2005 17:09:51 +0000 (17:09 +0000)
lib/gui/ewindow.cpp
lib/gui/ewindow.h
lib/service/iservice.h
lib/service/servicedvb.cpp

index 622e8b0acacf92cb33f9196b074e560b28844e02..54a359582327698d6c24227cdf2b6fde4bfcbeff 100644 (file)
@@ -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;
index 33ad7a7262a1316a1b1fc86dc7f0fcb11651a77d..a5b92eda15cb13fd1cfed19f78cb9f4e83344d35 100644 (file)
@@ -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 {
index eb04eaddb2230b769555ea6845a6e6dd8eb31e17..a195009a8a8a1afae68393cc556f3de4bd0fd676 100644 (file)
@@ -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)
        {
index b3c157389d540f29aba9629af831647c37d1cf88..a9d235ec9bac1e5876ff6515f02f724b241181d4 100644 (file)
@@ -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