mirror of
https://bitbucket.org/smil3y/kde-workspace.git
synced 2025-02-23 10:22:49 +00:00
generic: remove unused config-workspace header inclusions
Signed-off-by: Ivailo Monev <xakepa10@gmail.com>
This commit is contained in:
parent
afa0efd8e7
commit
e2981d0cc2
4 changed files with 19 additions and 12 deletions
|
@ -26,7 +26,6 @@
|
|||
//KDE
|
||||
#include <kaboutdata.h>
|
||||
#include <kcmdlineargs.h>
|
||||
#include <config-workspace.h>
|
||||
|
||||
KicApp::KicApp() : KApplication()
|
||||
{
|
||||
|
|
|
@ -23,7 +23,6 @@ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|||
|
||||
******************************************************************/
|
||||
|
||||
#include "config-workspace.h"
|
||||
#include "shutdowndlg.h"
|
||||
#include "kworkspace/kdisplaymanager.h"
|
||||
|
||||
|
|
|
@ -18,6 +18,8 @@
|
|||
***************************************************************************/
|
||||
|
||||
#include "statusnotifierwatcher.h"
|
||||
#include "statusnotifierwatcheradaptor.h"
|
||||
#include "statusnotifieritem_interface.h"
|
||||
|
||||
#include <QDBusConnection>
|
||||
#include <QDBusServiceWatcher>
|
||||
|
@ -29,11 +31,6 @@
|
|||
#include <kpluginloader.h>
|
||||
#include <kdeversion.h>
|
||||
|
||||
#include "statusnotifierwatcheradaptor.h"
|
||||
#include "statusnotifieritem_interface.h"
|
||||
#include <config-workspace.h>
|
||||
|
||||
|
||||
static inline KAboutData aboutData()
|
||||
{
|
||||
return KAboutData("statusnotifierwatcher", 0, ki18n("statusnotifierwatcher"), KDE_VERSION_STRING);
|
||||
|
|
|
@ -26,7 +26,6 @@
|
|||
#include <KCmdLineArgs>
|
||||
#include <KUniqueApplication>
|
||||
#include <kdeversion.h>
|
||||
#include <config-workspace.h>
|
||||
|
||||
#include "SystemSettingsApp.h"
|
||||
#include "SettingsBase.h"
|
||||
|
@ -34,10 +33,23 @@
|
|||
int main(int argc, char *argv[])
|
||||
{
|
||||
// About data
|
||||
KAboutData aboutData("systemsettings", 0, ki18n("System Settings"), KDE_VERSION_STRING, ki18n("Central configuration center for KDE."), KAboutData::License_GPL, ki18n("(c) 2009, Ben Cooksley"));
|
||||
aboutData.addAuthor(ki18n("Ben Cooksley"), ki18n("Maintainer"), "bcooksley@kde.org");
|
||||
aboutData.addAuthor(ki18n("Mathias Soeken"), ki18n("Developer"), "msoeken@informatik.uni-bremen.de");
|
||||
aboutData.addAuthor(ki18n("Will Stephenson"), ki18n("Internal module representation, internal module model"), "wstephenson@kde.org");
|
||||
KAboutData aboutData(
|
||||
"systemsettings", 0, ki18n("System Settings"), KDE_VERSION_STRING,
|
||||
ki18n("Central configuration center for KDE."),
|
||||
KAboutData::License_GPL,
|
||||
ki18n("(c) 2009, Ben Cooksley")
|
||||
);
|
||||
aboutData.addAuthor(
|
||||
ki18n("Ben Cooksley"), ki18n("Maintainer"), "bcooksley@kde.org"
|
||||
);
|
||||
aboutData.addAuthor(
|
||||
ki18n("Mathias Soeken"), ki18n("Developer"), "msoeken@informatik.uni-bremen.de"
|
||||
);
|
||||
aboutData.addAuthor(
|
||||
ki18n("Will Stephenson"),
|
||||
ki18n("Internal module representation, internal module model"),
|
||||
"wstephenson@kde.org"
|
||||
);
|
||||
|
||||
aboutData.setProgramIconName("preferences-system");
|
||||
KCmdLineArgs::init(argc, argv, &aboutData);
|
||||
|
|
Loading…
Add table
Reference in a new issue