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

(-)tdesvn-trinity-14.0.12/src/tdesvn.h~ (+1 lines)
Lines 61-66 Link Here
61
    virtual void openBookmarkURL (const TQString &_url);
61
    virtual void openBookmarkURL (const TQString &_url);
62
    virtual TQString currentURL () const;
62
    virtual TQString currentURL () const;
63
    void checkReload();
63
    void checkReload();
64
    void closeEvent( TQCloseEvent * );
64
65
65
protected:
66
protected:
66
    /**
67
    /**
(-)tdesvn-trinity-14.0.12/src/tdesvn.cpp~ (+10 lines)
Lines 439-444 Link Here
439
439
440
440
441
/*!
441
/*!
442
    \fn tdesvn::closeEvent()
443
 */
444
void tdesvn::closeEvent( TQCloseEvent *ce )
445
{
446
    if(getMemberList()->count() <= 1) kapp->quit();
447
    else ce->accept();
448
}
449
450
451
/*!
442
    \fn tdesvn::slotLoadLast(bool)
452
    \fn tdesvn::slotLoadLast(bool)
443
 */
453
 */
444
void tdesvn::slotLoadLast(bool how)
454
void tdesvn::slotLoadLast(bool how)
(-)tdesvn-trinity-14.0.12/src/tdesvn_part.h~ (-1 lines)
Lines 97-103 Link Here
97
private:
97
private:
98
    tdesvnView *m_view;
98
    tdesvnView *m_view;
99
    KdesvnBrowserExtension*m_browserExt;
99
    KdesvnBrowserExtension*m_browserExt;
100
    static TQString m_Extratext;
101
protected slots:
100
protected slots:
102
    void slotSettingsChanged();
101
    void slotSettingsChanged();
103
protected slots:
102
protected slots:
(-)tdesvn-trinity-14.0.12/src/tdesvn_part.cpp~ (-2 / +1 lines)
Lines 54-60 Link Here
54
extern "C" { KDESVN_EXPORT void *init_tdesvnpart() { return new tdesvnPartFactory; } }
54
extern "C" { KDESVN_EXPORT void *init_tdesvnpart() { return new tdesvnPartFactory; } }
55
55
56
static const char version[] = VERSION;
56
static const char version[] = VERSION;
57
TQString tdesvnPart::m_Extratext = "";
58
57
59
static const char description[] =
58
static const char description[] =
60
    I18N_NOOP("A Subversion Client for TDE (dynamic Part component)");
59
    I18N_NOOP("A Subversion Client for TDE (dynamic Part component)");
Lines 156-162 Link Here
156
155
157
TDEAboutData* tdesvnPart::createAboutData()
156
TDEAboutData* tdesvnPart::createAboutData()
158
{
157
{
159
    m_Extratext = TQString(I18N_NOOP("Built with Subversion library: %1\n")).arg(svn::Version::linked_version());
158
    TQString m_Extratext = TQString(I18N_NOOP("Built with Subversion library: %1\n")).arg(svn::Version::linked_version());
160
    m_Extratext+=TQString(I18N_NOOP("Running Subversion library: %1")).arg(svn::Version::running_version());
159
    m_Extratext+=TQString(I18N_NOOP("Running Subversion library: %1")).arg(svn::Version::running_version());
161
160
162
    TDEAboutData*about = new TDEAboutData("tdesvnpart", I18N_NOOP("tdesvn Part"), version, description,
161
    TDEAboutData*about = new TDEAboutData("tdesvnpart", I18N_NOOP("tdesvn Part"), version, description,

Return to bug 3118