By default, Bugzilla does not search the list of RESOLVED bugs.
You can force it to do so by putting the upper-case word ALL in front of your search query, e.g.: ALL tdelibs
We recommend searching for bugs this way, as you may discover that your bug has already been resolved and fixed in a later release. View | Details | Raw Unified | Return to bug 1680
Collapse All | Expand All

(-)ori/tdebase/kate/app/katemainwindow.cpp (-1 / +8 lines)
Lines 791-802 Link Here
791
void KateMainWindow::slotDocumentCreated (Kate::Document *doc)
791
void KateMainWindow::slotDocumentCreated (Kate::Document *doc)
792
{
792
{
793
  connect(doc,TQT_SIGNAL(modStateChanged(Kate::Document *)),this,TQT_SLOT(updateCaption(Kate::Document *)));
793
  connect(doc,TQT_SIGNAL(modStateChanged(Kate::Document *)),this,TQT_SLOT(updateCaption(Kate::Document *)));
794
  connect(doc,TQT_SIGNAL(nameChanged(Kate::Document *)),this,TQT_SLOT(updateCaption(Kate::Document *)));
794
  connect(doc,TQT_SIGNAL(nameChanged(Kate::Document *)),this,TQT_SLOT(slotNameChanged(Kate::Document *)));
795
  connect(doc,TQT_SIGNAL(nameChanged(Kate::Document *)),this,TQT_SLOT(slotUpdateOpenWith()));
795
  connect(doc,TQT_SIGNAL(nameChanged(Kate::Document *)),this,TQT_SLOT(slotUpdateOpenWith()));
796
796
797
  updateCaption (doc);
797
  updateCaption (doc);
798
}
798
}
799
799
800
void KateMainWindow::slotNameChanged(Kate::Document *doc)
801
{
802
  updateCaption(doc);
803
  if (!doc->url().isEmpty())
804
    fileOpenRecent->addURL(doc->url());
805
}
806
800
void KateMainWindow::updateCaption (Kate::Document *doc)
807
void KateMainWindow::updateCaption (Kate::Document *doc)
801
{
808
{
802
  if (!m_viewManager->activeView())
809
  if (!m_viewManager->activeView())
(-)ori/tdebase/kate/app/katemainwindow.h (-3 / +4 lines)
Lines 156-165 Link Here
156
    void tipOfTheDay();
156
    void tipOfTheDay();
157
157
158
    /* to update the caption */
158
    /* to update the caption */
159
    void slotDocumentCreated (Kate::Document *doc);
159
    void slotDocumentCreated(Kate::Document *doc);
160
    void updateCaption (Kate::Document *doc);
160
    void slotNameChanged(Kate::Document *doc);
161
    void updateCaption(Kate::Document *doc);
161
162
162
    void pluginHelp ();
163
    void pluginHelp();
163
    void slotFullScreen(bool);
164
    void slotFullScreen(bool);
164
165
165
  public:
166
  public:

Return to bug 1680