diff options
author | Michele Calgaro <[email protected]> | 2024-11-03 11:04:08 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2024-11-03 11:31:40 +0900 |
commit | d5ec3d83b6eeaf5b7c4e2b02f231f7091a13f222 (patch) | |
tree | 40f4fb1ee1a172fc172cee2c8dd5a866aa064dcf /ksmserver/startupdlg.cpp | |
parent | ba767a247d8152600535005da253cf8f0c750b44 (diff) | |
download | tdebase-fix/issue-314.tar.gz tdebase-fix/issue-314.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.cpp')
-rw-r--r-- | ksmserver/startupdlg.cpp | 86 |
1 files changed, 0 insertions, 86 deletions
diff --git a/ksmserver/startupdlg.cpp b/ksmserver/startupdlg.cpp deleted file mode 100644 index e236ddfee..000000000 --- a/ksmserver/startupdlg.cpp +++ /dev/null @@ -1,86 +0,0 @@ -/***************************************************************** -ksmserver - the KDE session management server - -Copyright (C) 2010-2011 Timothy Pearson <[email protected]> -Copyright (C) 2000 Matthias Ettrich <[email protected]> -******************************************************************/ - -#include "startupdlg.h" -#include <tqapplication.h> -#include <tqlayout.h> -#include <tqgroupbox.h> -#include <tqvbuttongroup.h> -#include <tqlabel.h> -#include <tqvbox.h> -#include <tqtimer.h> -#include <tqstyle.h> -#include <tqcombobox.h> -#include <tqcursor.h> -#include <tqmessagebox.h> -#include <tqbuttongroup.h> -#include <tqiconset.h> -#include <tqpixmap.h> -#include <tqpopupmenu.h> -#include <tqtooltip.h> -#include <tqimage.h> -#include <tqpainter.h> -#include <tqfontmetrics.h> -#include <tqregexp.h> -#include <tqeventloop.h> - -#include <tdelocale.h> -#include <tdeconfig.h> -#include <tdeapplication.h> -#include <kdebug.h> -#include <kpushbutton.h> -#include <kstdguiitem.h> -#include <kguiitem.h> -#include <kiconloader.h> -#include <tdeglobalsettings.h> -#include <twin.h> -#include <kuser.h> -#include <kpixmap.h> -#include <kimageeffect.h> -#include <kdialog.h> -#include <kseparator.h> -#include <tdeconfig.h> - -#include <dcopclient.h> -#include <dcopref.h> - -#include <sys/types.h> -#include <sys/utsname.h> -#include <unistd.h> -#include <stdlib.h> -#include <math.h> -#include <dmctl.h> -#include <tdeaction.h> -#include <netwm.h> - -#include <X11/Xlib.h> - -#include "startupdlg.moc" - -TQWidget* KSMStartupIPDlg::showStartupIP() -{ - kapp->enableStyles(); - KSMStartupIPDlg* l = new KSMStartupIPDlg( 0 ); - - kapp->disableStyles(); - - return l; -} - -KSMStartupIPDlg::KSMStartupIPDlg(TQWidget* parent) - : KSMModalDialog( parent ) - -{ - setStatusMessage(i18n("Loading your settings").append("...")); - - show(); - setActiveWindow(); -} - -KSMStartupIPDlg::~KSMStartupIPDlg() -{ -} |