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 826
Collapse All | Expand All

(-)tdewebdev/quanta/data/config/quantaui.rc (-3 lines)
Lines 169-177 Link Here
169
            <Separator/>
169
            <Separator/>
170
            <Action name="context_help" />
170
            <Action name="context_help" />
171
            <Separator/>
171
            <Separator/>
172
            <Action name="help_homepage" />
173
            <Action name="help_userlist" />
174
            <Action name="help_donation" />
175
            <Action name="help_reportbug" />
172
            <Action name="help_reportbug" />
176
            <Action name="help_tip" />
173
            <Action name="help_tip" />
177
            <Separator/>
174
            <Separator/>
(-)tdewebdev/quanta/src/quanta.cpp (-19 lines)
Lines 3140-3164 Link Here
3140
    w->codeCompletionHintRequested();
3140
    w->codeCompletionHintRequested();
3141
}
3141
}
3142
3142
3143
void QuantaApp::slotMakeDonation()
3144
{
3145
 DonationDialog *dlg = new DonationDialog(this);
3146
 dlg->closeButton->setIconSet(SmallIconSet("fileclose"));
3147
 connect(dlg->closeButton, TQT_SIGNAL(clicked()), dlg, TQT_SLOT(accept()));
3148
 dlg->exec();
3149
 delete dlg;
3150
}
3151
3152
void QuantaApp::slotHelpHomepage()
3153
{
3154
  kapp->invokeBrowser("http://quanta.tdewebdev.org");
3155
}
3156
3157
void QuantaApp::slotHelpUserList()
3158
{
3159
  kapp->invokeBrowser("http://mail.kde.org/mailman/listinfo/quanta");
3160
}
3161
3162
/** Loads the toolbars for dtd named dtdName and unload the ones belonging to oldDtdName. */
3143
/** Loads the toolbars for dtd named dtdName and unload the ones belonging to oldDtdName. */
3163
void QuantaApp::slotLoadToolbarForDTD(const TQString& dtdName)
3144
void QuantaApp::slotLoadToolbarForDTD(const TQString& dtdName)
3164
{
3145
{
(-)tdewebdev/quanta/src/quanta.h (-6 lines)
Lines 434-443 Link Here
434
protected slots:
434
protected slots:
435
  void slotDockWidgetHasUndocked(KDockWidget *widget);
435
  void slotDockWidgetHasUndocked(KDockWidget *widget);
436
  void slotPreviewBeingClosed();
436
  void slotPreviewBeingClosed();
437
  /** No descriptions */
438
  void slotMakeDonation();
439
  /** No descriptions */
440
  void slotHelpHomepage();
441
  /** Show or hide the DTD toolbar */
437
  /** Show or hide the DTD toolbar */
442
  void slotToggleDTDToolbar(bool show);
438
  void slotToggleDTDToolbar(bool show);
443
  /** Loads a DTEP*/
439
  /** Loads a DTEP*/
Lines 466-473 Link Here
466
  void slotDownloadDoc();
462
  void slotDownloadDoc();
467
  /** Shows tip of the day */
463
  /** Shows tip of the day */
468
  void slotHelpTip();
464
  void slotHelpTip();
469
  /** Show the user mailing list sign up */
470
  void slotHelpUserList();
471
  void slotOpenFileUnderCursor();
465
  void slotOpenFileUnderCursor();
472
  void slotUploadOpenedFiles();
466
  void slotUploadOpenedFiles();
473
  /** Called after there was no user activity - cursor movement - for xx ms*/
467
  /** Called after there was no user activity - cursor movement - for xx ms*/
(-)tdewebdev/quanta/src/quanta_init.cpp (-12 lines)
Lines 786-803 Link Here
786
                        TQT_TQOBJECT(m_quanta), TQT_SLOT( slotContextHelp() ),
786
                        TQT_TQOBJECT(m_quanta), TQT_SLOT( slotContextHelp() ),
787
                        TQT_TQOBJECT(ac), "context_help" );
787
                        TQT_TQOBJECT(ac), "context_help" );
788
788
789
    (void) new KAction( i18n( "&Quanta Homepage" ), 0,
790
                        TQT_TQOBJECT(m_quanta), TQT_SLOT( slotHelpHomepage() ),
791
                        TQT_TQOBJECT(ac), "help_homepage" );
792
793
    (void) new KAction( i18n( "&User Mailing List" ), 0,
794
                        TQT_TQOBJECT(m_quanta), TQT_SLOT( slotHelpUserList() ),
795
                        TQT_TQOBJECT(ac), "help_userlist" );
796
797
    (void) new KAction( i18n( "Make &Donation" ), 0,
798
                        TQT_TQOBJECT(m_quanta), TQT_SLOT( slotMakeDonation() ),
799
                        TQT_TQOBJECT(ac), "help_donation" );
800
801
    (void) new KAction( i18n( "Tag &Attributes..." ), ALT+Key_Down,
789
    (void) new KAction( i18n( "Tag &Attributes..." ), ALT+Key_Down,
802
                        m_quanta->m_doc, TQT_SLOT( slotAttribPopup() ),
790
                        m_quanta->m_doc, TQT_SLOT( slotAttribPopup() ),
803
                        TQT_TQOBJECT(ac), "tag_attributes" );
791
                        TQT_TQOBJECT(ac), "tag_attributes" );

Return to bug 826