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

(-)kdelibs/kdeui/kaboutkde.cpp (-1 / +1 lines)
Lines 79-85 Link Here
79
  setTitle(i18n("Trinity Desktop Environment. Release %1").
79
  setTitle(i18n("Trinity Desktop Environment. Release %1").
80
	   arg(TQString::tqfromLatin1(KDE_VERSION_STRING)) );
80
	   arg(TQString::tqfromLatin1(KDE_VERSION_STRING)) );
81
  addTextPage( i18n("About Trinity","&About"), text1, true );
81
  addTextPage( i18n("About Trinity","&About"), text1, true );
82
  addTextPage( i18n("&Report Bugs or Wishes"), text2, true );
82
  addTextPage( i18n("&Report Bugs/Request Enhancements"), text2, true );
83
  addTextPage( i18n("&Join the Trinity Team"), text3, true );
83
  addTextPage( i18n("&Join the Trinity Team"), text3, true );
84
  addTextPage( i18n("&Support Trinity"), text4, true );
84
  addTextPage( i18n("&Support Trinity"), text4, true );
85
  setImage( locate( "data", TQString::tqfromLatin1("kdeui/pics/aboutkde.png")) );
85
  setImage( locate( "data", TQString::tqfromLatin1("kdeui/pics/aboutkde.png")) );
(-)kdelibs/kdeui/kbugreport.cpp (-3 / +11 lines)
Lines 250-258 Link Here
250
    // Point to the web form
250
    // Point to the web form
251
251
252
    lay->addSpacing(10);
252
    lay->addSpacing(10);
253
    TQString text = i18n("To submit a bug report, click on the button below.\n"
253
    TQString text = i18n("Reporting bugs and requesting enhancements are maintained using the Bugzilla reporting system.\n"
254
                        "This will open a web browser window on http://bugs.pearsoncomputing.net where you will find a form to fill in.\n"
254
                        "You'll need a login account and password to use the reporting system.\n"
255
                        "The information displayed above will be transferred to that server.");
255
                        "To control spam and rogue elements the login requires a valid email address.\n"
256
                        "Consider using any large email service if you want to avoid using your private email address.\n"
257
                        "\n"
258
                        "Selecting the button below opens your web browser to http://bugs.pearsoncomputing.net,\n"
259
                        "where you will find the report form.\n"
260
                        "The information displayed above will be transferred to the reporting system.\n"
261
                        "Session cookies must be enabled to use the reporting system.\n"
262
                        "\n"
263
                        "Thank you for helping!");
256
    TQLabel * label = new TQLabel( text, parent, "label");
264
    TQLabel * label = new TQLabel( text, parent, "label");
257
    lay->addWidget( label );
265
    lay->addWidget( label );
258
    lay->addSpacing(10);
266
    lay->addSpacing(10);
(-)kdelibs/kdeui/khelpmenu.cpp (-1 / +1 lines)
Lines 148-154 Link Here
148
    {
148
    {
149
      if (need_separator)
149
      if (need_separator)
150
        mMenu->insertSeparator();
150
        mMenu->insertSeparator();
151
      mMenu->insertItem( i18n( "&Report Bug..." ), menuReportBug );
151
      mMenu->insertItem( i18n( "&Report Bug/Request Enhancement..." ), menuReportBug );
152
      mMenu->connectItem( menuReportBug, this, TQT_SLOT(reportBug()) );
152
      mMenu->connectItem( menuReportBug, this, TQT_SLOT(reportBug()) );
153
      need_separator = true;
153
      need_separator = true;
154
    }
154
    }
(-)kdelibs/kdeui/kstdaction_p.h (-1 / +1 lines)
Lines 108-114 Link Here
108
	{ HelpContents,  KStdAccel::Help, "help_contents", I18N_NOOP("%1 &Handbook"), 0, "contents" },
108
	{ HelpContents,  KStdAccel::Help, "help_contents", I18N_NOOP("%1 &Handbook"), 0, "contents" },
109
	{ WhatsThis,     KStdAccel::WhatsThis, "help_whats_this", I18N_NOOP("What's &This?"), 0, "contexthelp" },
109
	{ WhatsThis,     KStdAccel::WhatsThis, "help_whats_this", I18N_NOOP("What's &This?"), 0, "contexthelp" },
110
	{ TipofDay,      KStdAccel::AccelNone, "help_show_tip", I18N_NOOP("Tip of the &Day"), 0, "idea" },
110
	{ TipofDay,      KStdAccel::AccelNone, "help_show_tip", I18N_NOOP("Tip of the &Day"), 0, "idea" },
111
	{ ReportBug,     KStdAccel::AccelNone, "help_report_bug", I18N_NOOP("&Report Bug..."), 0, 0 },
111
	{ ReportBug,     KStdAccel::AccelNone, "help_report_bug", I18N_NOOP("&Report Bug/Request Enhancement..."), 0, 0 },
112
	{ SwitchApplicationLanguage,     KStdAccel::AccelNone, "switch_application_language", I18N_NOOP("Switch application &language..."), 0, 0 },
112
	{ SwitchApplicationLanguage,     KStdAccel::AccelNone, "switch_application_language", I18N_NOOP("Switch application &language..."), 0, 0 },
113
	{ AboutApp,      KStdAccel::AccelNone, "help_about_app", I18N_NOOP("&About %1"), 0, 0 },
113
	{ AboutApp,      KStdAccel::AccelNone, "help_about_app", I18N_NOOP("&About %1"), 0, 0 },
114
	{ AboutKDE,      KStdAccel::AccelNone, "help_about_kde", I18N_NOOP("About &Trinity"), 0,"about_kde" },
114
	{ AboutKDE,      KStdAccel::AccelNone, "help_about_kde", I18N_NOOP("About &Trinity"), 0,"about_kde" },

Return to bug 754