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~ (+15 lines)
Lines 57-62 Link Here
57
#include <kedittoolbar.h>
57
#include <kedittoolbar.h>
58
#include <kkeydialog.h>
58
#include <kkeydialog.h>
59
#include <kdirselectdialog.h>
59
#include <kdirselectdialog.h>
60
#include <tqsqldatabase.h>
60
61
61
#ifdef TESTING_RC
62
#ifdef TESTING_RC
62
#include <kcrash.h>
63
#include <kcrash.h>
Lines 67-72 Link Here
67
      KBookmarkOwner()
68
      KBookmarkOwner()
68
{
69
{
69
    m_part = 0;
70
    m_part = 0;
71
72
    TQSqlDatabase *m_Database = TQSqlDatabase::addDatabase("TQSQLITE3","tmpdb");
73
    TQSqlDatabase::removeDatabase("tmpdb");
74
70
#ifdef TESTING_RC
75
#ifdef TESTING_RC
71
    setXMLFile(TESTING_RC);
76
    setXMLFile(TESTING_RC);
72
    kdDebug()<<"Using test rc file in " << TESTING_RC << endl;
77
    kdDebug()<<"Using test rc file in " << TESTING_RC << endl;
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)

Return to bug 3118