[Kget] [Bug 77402] KGet "List all Links" window from Konqueror is labelled "Konqueror", which is confusing

Pino Toscano toscano.pino at tiscali.it
Fri Mar 4 12:33:36 CET 2005


------- 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=77402         
toscano.pino tiscali it changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |RESOLVED
         Resolution|                            |FIXED



------- Additional Comments From toscano.pino tiscali it  2005-03-04 12:33 -------
CVS commit by pino: 

Implementing wishlist #77402 (wishlist): KGet "List all Links" window from Konqueror is labelled "Konqueror", which is confusing
Moreover, I close it, sice I can't backport it to the branch, because it adds at least one new string.

BUG: 77402


  M +6 -0      kget_linkview.cpp   1.4
  M +2 -1      kget_linkview.h   1.2
  M +2 -0      kget_plug_in.cpp   1.17


--- kdenetwork/kget/kget_plug_in/kget_linkview.cpp  #1.3:1.4
 @ -34,4 +34,6  @ KGetLinkView::KGetLinkView( QWidget *par
     : KMainWindow( parent, name )
 {
+    setPlainCaption( i18n( "KGet" ) );
+
     KActionCollection *coll = actionCollection();
 
 @ -100,4 +102,8  @ void KGetLinkView::slotStartLeech()
 }
 
+void KGetLinkView::setPageURL( const QString& url )
+{
+    setPlainCaption( i18n( "Links in: %1 - KGet" ).arg( url ) );
+}
 
 #include "kget_linkview.moc"

--- kdenetwork/kget/kget_plug_in/kget_linkview.h  #1.1:1.2
 @ -34,4 +34,5  @ public:
 
     void setLinks( QPtrList<LinkItem>& links );
+    void setPageURL( const QString& url );
 
 signals:

--- kdenetwork/kget/kget_plug_in/kget_plug_in.cpp  #1.16:1.17
 @ -153,4 +153,6  @ void KGet_plug_in::slotShowLinks()
 
     KGetLinkView *view = new KGetLinkView();
+    QString url = doc.URL().string();
+    view->setPageURL( url );
     connect( view, SIGNAL( leechURLs( const KURL::List& ) ),
              SLOT( startDownload( const KURL::List& ) ));



More information about the Kget mailing list