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

(-)tdebase/kate/app/kateapp.cpp (-2 / +5 lines)
Lines 131-138 Link Here
131
 */
131
 */
132
TQString KateApp::kateVersion (bool fullVersion)
132
TQString KateApp::kateVersion (bool fullVersion)
133
{
133
{
134
  return fullVersion ? TQString ("%1.%2.%3").arg(KDE::versionMajor() - 1).arg(KDE::versionMinor()).arg(KDE::versionRelease())
134
  /** The old version scheme worked fine in the 3.5.x days but with the new Trinity Rx.y.z
135
           : TQString ("%1.%2").arg(KDE::versionMajor() - 1).arg(KDE::versionMinor());
135
      scheme the version number gets weird. Hard-code the first two numbers to match the old days
136
      and only update the last number. */
137
  return fullVersion ? TQString ("2.5.%1").arg(KDE::versionMajor())
138
           : TQString ("%1.%2").arg(2.5);
136
}
139
}
137
140
138
void KateApp::restoreKate ()
141
void KateApp::restoreKate ()
(-)tdebase/kate/app/kwritemain.cpp (-1 / +4 lines)
Lines 543-549 Link Here
543
  KLocale::setMainCatalogue("kate");         //lukas: set this to have the kwritepart translated using kate message catalog
543
  KLocale::setMainCatalogue("kate");         //lukas: set this to have the kwritepart translated using kate message catalog
544
544
545
  // here we go, construct the KWrite version
545
  // here we go, construct the KWrite version
546
  TQString kWriteVersion  = TQString ("%1.%2.%3").arg(KDE::versionMajor() + 1).arg(KDE::versionMinor()).arg(KDE::versionRelease());
546
  /** The old version scheme worked fine in the 3.5.x days but with the new Trinity Rx.y.z
547
      scheme the version number gets weird. Hard-code the first two numbers to match the old days
548
      and only update the last number. */
549
  TQString kWriteVersion  = TQString ("4.5.%1").arg(KDE::versionMajor());
547
550
548
  KAboutData aboutData ( "kwrite",
551
  KAboutData aboutData ( "kwrite",
549
                         I18N_NOOP("KWrite"),
552
                         I18N_NOOP("KWrite"),

Return to bug 1045