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

(-)trinity-tdebase-3.5.13.2~pre86+807a5445/kdesktop/lock/lockdlg.h.ori (+4 lines)
Lines 60-65 Link Here
60
    void slotOK();
60
    void slotOK();
61
    void layoutClicked();
61
    void layoutClicked();
62
    void slotActivity();
62
    void slotActivity();
63
    void moveTimerDone();
63
64
64
protected slots:
65
protected slots:
65
    virtual void reject();
66
    virtual void reject();
Lines 79-84 Link Here
79
    void handleVerify();
80
    void handleVerify();
80
    void reapVerify();
81
    void reapVerify();
81
    void cantCheck();
82
    void cantCheck();
83
    void movedialog( int _move );
84
    void badPasswordLogin();
82
    GreeterPluginHandle *mPlugin;
85
    GreeterPluginHandle *mPlugin;
83
    KGreeterPlugin *greet;
86
    KGreeterPlugin *greet;
84
    TQFrame      *frame;
87
    TQFrame      *frame;
Lines 95-100 Link Here
95
    int         sPid, sFd;
98
    int         sPid, sFd;
96
    TQListView   *lv;
99
    TQListView   *lv;
97
    TQDateTime   m_lockStartDT;
100
    TQDateTime   m_lockStartDT;
101
    bool        waitMoveDialog;
98
};
102
};
99
103
100
#endif
104
#endif
(-)trinity-tdebase-3.5.13.2~pre86+807a5445/kdesktop/lock/lockdlg.cc.ori (+33 lines)
Lines 55-60 Link Here
55
#include <X11/keysym.h>
55
#include <X11/keysym.h>
56
#include <X11/Xatom.h>
56
#include <X11/Xatom.h>
57
#include <fixx11h.h>
57
#include <fixx11h.h>
58
#include <kapplication.h>
58
59
59
#ifndef AF_LOCAL
60
#ifndef AF_LOCAL
60
# define AF_LOCAL	AF_UNIX
61
# define AF_LOCAL	AF_UNIX
Lines 302-307 Link Here
302
    }
303
    }
303
}
304
}
304
305
306
void PasswordDlg::movedialog( int _move )
307
{
308
     waitMoveDialog = true;
309
     this->move(pos().x()+_move, pos().y());
310
     TQTimer::singleShot( 50, this, TQT_SLOT(moveTimerDone()) );
311
     while (waitMoveDialog) {
312
          kapp->processEvents();
313
     }
314
}
315
316
void PasswordDlg::moveTimerDone()
317
{
318
     waitMoveDialog = false;
319
}
320
321
void PasswordDlg::badPasswordLogin()
322
{
323
     if ( mUnlockingFailed )
324
     {
325
          for ( int i = 0 ; i<2 ; i++)
326
          {
327
               movedialog( 10 );
328
               movedialog( -20 );
329
               movedialog( 20 );
330
               movedialog( -20 );
331
               movedialog( 20 );
332
               movedialog( -10 );
333
          }
334
     }
335
}
336
305
//---------------------------------------------------------------------------
337
//---------------------------------------------------------------------------
306
//
338
//
307
// Handle timer events.
339
// Handle timer events.
Lines 437-442 Link Here
437
            ok->setEnabled(false);
469
            ok->setEnabled(false);
438
            cancel->setEnabled(false);
470
            cancel->setEnabled(false);
439
            mNewSessButton->setEnabled( false );
471
            mNewSessButton->setEnabled( false );
472
            badPasswordLogin();
440
            return;
473
            return;
441
        case AuthAbort:
474
        case AuthAbort:
442
            return;
475
            return;

Return to bug 1499