summaryrefslogtreecommitdiffstats
path: root/ksmserver/startupdlg.h
diff options
context:
space:
mode:
authorMichele Calgaro <[email protected]>2024-11-03 11:04:08 +0900
committerMichele Calgaro <[email protected]>2024-11-03 11:31:40 +0900
commitd5ec3d83b6eeaf5b7c4e2b02f231f7091a13f222 (patch)
tree40f4fb1ee1a172fc172cee2c8dd5a866aa064dcf /ksmserver/startupdlg.h
parentba767a247d8152600535005da253cf8f0c750b44 (diff)
downloadtdebase-d5ec3d83b6eeaf5b7c4e2b02f231f7091a13f222.tar.gz
tdebase-d5ec3d83b6eeaf5b7c4e2b02f231f7091a13f222.zip
Remove unnecessary code related to the simple login modal dialog.fix/issue-314
The showFancyLogin option controls the appearance of a simple modal dialog at login. This dialog is disabled if a splash screen is used. The dialog would show up if: 1. no splash screen was used and a new unsaved session was started 2. the 'Unified' splash screen was used and a saved session was restored. In this case the dialog and the 'Unified' splash screen would both be shown, covering each other. This is a partial revert of commit b971f9aae7 and resolves issue #314. Signed-off-by: Michele Calgaro <[email protected]>
Diffstat (limited to 'ksmserver/startupdlg.h')
-rw-r--r--ksmserver/startupdlg.h49
1 files changed, 0 insertions, 49 deletions
diff --git a/ksmserver/startupdlg.h b/ksmserver/startupdlg.h
deleted file mode 100644
index bc9327a09..000000000
--- a/ksmserver/startupdlg.h
+++ /dev/null
@@ -1,49 +0,0 @@
-/*****************************************************************
-ksmserver - the KDE session management server
-
-Copyright (C) 2000 Matthias Ettrich <[email protected]>
-******************************************************************/
-
-#ifndef STARTUPDLG_H
-#define STARTUPDLG_H
-
-#include <tqpixmap.h>
-#include <tqimage.h>
-#include <tqdatetime.h>
-#include <kdialog.h>
-#include <kpushbutton.h>
-#include <tqpushbutton.h>
-#include <tqframe.h>
-#include <kguiitem.h>
-#include <tqtoolbutton.h>
-#include <ksharedpixmap.h>
-
-class TQPushButton;
-class TQVButtonGroup;
-class TQPopupMenu;
-class TQTimer;
-class TQPainter;
-class TQString;
-class TDEAction;
-
-#include "timed.h"
-#include <tdeapplication.h>
-#include <kpixmapio.h>
-
-
-// The startup-in-progress dialog
-class KSMStartupIPDlg : public KSMModalDialog
-{
- TQ_OBJECT
-
-public:
- static TQWidget* showStartupIP();
-
-protected:
- ~KSMStartupIPDlg();
-
-private:
- KSMStartupIPDlg( TQWidget* parent );
-};
-
-#endif