[Konsole-devel] [Bug 125796] Konsole tab titles don't refresh themselves automatically (without a user action)

Kurt V.Hindenburg kurt.hindenburg at kdemail.net
Wed May 31 16:00:29 UTC 2006


------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
         
http://bugs.kde.org/show_bug.cgi?id=125796         




------- Additional Comments From kurt.hindenburg kdemail net  2006-05-31 18:00 -------
SVN commit 546980 by hindenburg:

Fix warnings dealing with updateTitle(TESession*).  As far as I can
tell, updateTitle in konsole_part has no effect.

CCBUG: 125796 


 M  +3 -3      konsole_part.cpp  
 M  +1 -1      konsole_part.h  


--- branches/KDE/3.5/kdebase/konsole/konsole/konsole_part.cpp #546979:546980
 @ -922,7 +922,7  @
   if ( se ) se->setListenToKeyPress(true);
 }
 
-void konsolePart::updateTitle()
+void konsolePart::updateTitle(TESession *)
 {
   if ( se ) emit setWindowCaption( se->fullTitle() );
 }
 @ -1064,8 +1064,8  @
            this,SLOT(doneSession(TESession*)) );
   connect( se,SIGNAL(openURLRequest(const QString &)),
            this,SLOT(emitOpenURLRequest(const QString &)) );
-  connect( se, SIGNAL( updateTitle() ),
-           this, SLOT( updateTitle() ) );
+  connect( se, SIGNAL( updateTitle(TESession*) ),
+           this, SLOT( updateTitle(TESession*) ) );
   connect( se, SIGNAL(enableMasterModeConnections()),
            this, SLOT(enableMasterModeConnections()) );
   connect( se, SIGNAL( processExited(KProcess *) ),
--- branches/KDE/3.5/kdebase/konsole/konsole/konsole_part.h #546979:546980
 @ -89,7 +89,7  @
     void doneSession(TESession*);
     void sessionDestroyed();
     void configureRequest(TEWidget*,int,int x,int y);
-    void updateTitle();
+    void updateTitle(TESession*);
     void enableMasterModeConnections();
 
  private slots:



More information about the konsole-devel mailing list