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 622e8b0..54a3595 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 33ad7a7..a5b92ed 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 eb04ead..a195009 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 b3c1573..a9d235e 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