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

(-)tdebase/tdm/kfrontend/kgapp.cpp (+1 lines)
Lines 170-175 Link Here
170
void
170
void
171
checkSAK(GreeterApp* app)
171
checkSAK(GreeterApp* app)
172
{
172
{
173
	if(!_useSAK)	return;
173
	app->restoreOverrideCursor();
174
	app->restoreOverrideCursor();
174
	SAKDlg sak(0);
175
	SAKDlg sak(0);
175
	sak.exec();
176
	sak.exec();
(-)tdebase/tdm/kfrontend/sakdlg.cc (-6 / +10 lines)
Lines 68-73 Link Here
68
#include <signal.h>
68
#include <signal.h>
69
#include <libgen.h>
69
#include <libgen.h>
70
70
71
#include "kdm_greet.h"
71
#include "kfdialog.h"
72
#include "kfdialog.h"
72
73
73
#ifndef AF_LOCAL
74
#ifndef AF_LOCAL
Lines 219-224 Link Here
219
	}
220
	}
220
}
221
}
221
222
223
void SAKDlg::keyPressEvent( QKeyEvent *e )
224
{
225
    if(e->key() == Qt::Key_Delete &&
226
	    (e->state()&(Qt::ControlButton|Qt::AltButton)))
227
	closeDialogForced();
228
}
229
222
SAKDlg::~SAKDlg()
230
SAKDlg::~SAKDlg()
223
{
231
{
224
    if ((mSAKProcess) && (mSAKProcess->isRunning())) {
232
    if ((mSAKProcess) && (mSAKProcess->isRunning())) {
Lines 235-246 Link Here
235
243
236
void SAKDlg::closeDialogForced()
244
void SAKDlg::closeDialogForced()
237
{
245
{
238
    TQDialog::reject();
246
    closingDown = true;
239
}
247
    reject();
240
241
void SAKDlg::reject()
242
{
243
244
}
248
}
245
249
246
void SAKDlg::updateLabel(TQString &txt)
250
void SAKDlg::updateLabel(TQString &txt)
(-)tdebase/tdm/kfrontend/sakdlg.h (-3 / +1 lines)
Lines 39-47 Link Here
39
private slots:
39
private slots:
40
    void slotSAKProcessExited();
40
    void slotSAKProcessExited();
41
    void handleInputPipe();
41
    void handleInputPipe();
42
42
    void keyPressEvent( QKeyEvent* );
43
protected slots:
44
    virtual void reject();
45
43
46
private:
44
private:
47
    TQFrame      *frame;
45
    TQFrame      *frame;

Return to bug 906