Hello community,

here is the log from the commit of package kdeadmin4 for openSUSE:Factory 
checked in at 2012-01-27 15:18:26
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/kdeadmin4 (Old)
 and      /work/SRC/openSUSE:Factory/.kdeadmin4.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "kdeadmin4", Maintainer is "[email protected]"

Changes:
--------
--- /work/SRC/openSUSE:Factory/kdeadmin4/kdeadmin4.changes      2011-12-08 
11:50:40.000000000 +0100
+++ /work/SRC/openSUSE:Factory/.kdeadmin4.new/kdeadmin4.changes 2012-01-27 
15:20:11.000000000 +0100
@@ -1,0 +2,16 @@
+Wed Jan 18 21:03:37 CET 2012 - [email protected]
+
+- update to 4.8.0
+  * first stable release of KDE 4.8 (only critical fixes over 4.7.98)
+  * see http://kde.org/announcements/4.8/ for details
+  
+
+-------------------------------------------------------------------
+Tue Jan 10 18:44:00 CET 2012 - [email protected]
+
+- update to 4.7.98
+  * RC2+ milestone release of KDE 4.8
+  *  see http://kde.org/announcements/4.8/ for details
+  
+
+-------------------------------------------------------------------

Old:
----
  kdeadmin-4.7.4.tar.bz2

New:
----
  kdeadmin-4.8.0.tar.bz2

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ kdeadmin4.spec ++++++
--- /var/tmp/diff_new_pack.bC37e1/_old  2012-01-27 15:20:12.000000000 +0100
+++ /var/tmp/diff_new_pack.bC37e1/_new  2012-01-27 15:20:13.000000000 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package kdeadmin4
 #
-# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -16,7 +16,7 @@
 #
 
 Name:           kdeadmin4
-Version:        4.7.4
+Version:        4.8.0
 Release:        0
 Summary:        KDEadmin base package
 License:        GPL-2.0+

++++++ kdeadmin-4.7.4.tar.bz2 -> kdeadmin-4.8.0.tar.bz2 ++++++
Files old/kdeadmin-4.7.4/doc/kcron/index.cache.bz2 and 
new/kdeadmin-4.8.0/doc/kcron/index.cache.bz2 differ
Files old/kdeadmin-4.7.4/doc/ksystemlog/index.cache.bz2 and 
new/kdeadmin-4.8.0/doc/ksystemlog/index.cache.bz2 differ
Files old/kdeadmin-4.7.4/doc/kuser/index.cache.bz2 and 
new/kdeadmin-4.8.0/doc/kuser/index.cache.bz2 differ
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kdeadmin-4.7.4/kcron/src/genericListWidget.cpp 
new/kdeadmin-4.8.0/kcron/src/genericListWidget.cpp
--- old/kdeadmin-4.7.4/kcron/src/genericListWidget.cpp  2011-12-02 
00:54:32.000000000 +0100
+++ new/kdeadmin-4.8.0/kcron/src/genericListWidget.cpp  2011-08-07 
17:47:36.000000000 +0200
@@ -100,7 +100,7 @@
        mainLayout->addLayout(treeLayout);
 
        logDebug() << "Generic list created" << endl;
-       connect(treeWidget(), SIGNAL(itemDoubleClicked(QTreeWidgetItem*, int)), 
SLOT(modifySelection(QTreeWidgetItem*, int)));
+       connect(treeWidget(), SIGNAL(itemDoubleClicked(QTreeWidgetItem*,int)), 
SLOT(modifySelection(QTreeWidgetItem*,int)));
 
 }
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kdeadmin-4.7.4/kcron/src/kcmCron.cpp 
new/kdeadmin-4.8.0/kcron/src/kcmCron.cpp
--- old/kdeadmin-4.7.4/kcron/src/kcmCron.cpp    2011-12-02 00:54:32.000000000 
+0100
+++ new/kdeadmin-4.8.0/kcron/src/kcmCron.cpp    2011-07-27 20:23:01.000000000 
+0200
@@ -20,7 +20,7 @@
 #include <QLabel>
 
 #include <kglobal.h>
-#include <kgenericfactory.h>
+#include <kpluginfactory.h>
 #include <kaboutdata.h>
 
 #include <kmenubar.h>
@@ -47,8 +47,8 @@
 #include "ctInitializationError.h"
 #include "logging.h"
 
-typedef KGenericFactory<KCMCron, QWidget> KCMCronFactory;
-K_EXPORT_COMPONENT_FACTORY( kcm_cron, KCMCronFactory("kcron") )
+K_PLUGIN_FACTORY(KCMCronFactory, registerPlugin<KCMCron>();)
+K_EXPORT_PLUGIN(KCMCronFactory("kcron"))
 
 class KCMCronPrivate {
 public:
@@ -67,7 +67,7 @@
 
 
 
-KCMCron::KCMCron(QWidget* parent, const QStringList& /*args*/) :
+KCMCron::KCMCron(QWidget* parent, const QVariantList& /*args*/) :
        KCModule(KCMCronFactory::componentData(), parent),
        d(new KCMCronPrivate()) {
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kdeadmin-4.7.4/kcron/src/kcmCron.h 
new/kdeadmin-4.8.0/kcron/src/kcmCron.h
--- old/kdeadmin-4.7.4/kcron/src/kcmCron.h      2011-12-02 00:54:32.000000000 
+0100
+++ new/kdeadmin-4.8.0/kcron/src/kcmCron.h      2011-07-27 20:23:01.000000000 
+0200
@@ -36,7 +36,7 @@
 
 public:
        //, const QVariantList& arguments
-       KCMCron(QWidget* parent, const QStringList& args);
+       KCMCron(QWidget* parent, const QVariantList& args);
 
        ~KCMCron();
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kdeadmin-4.7.4/kcron/src/kcm_cron.desktop 
new/kdeadmin-4.8.0/kcron/src/kcm_cron.desktop
--- old/kdeadmin-4.7.4/kcron/src/kcm_cron.desktop       2011-10-02 
14:59:49.000000000 +0200
+++ new/kdeadmin-4.8.0/kcron/src/kcm_cron.desktop       2012-01-18 
19:50:19.000000000 +0100
@@ -20,7 +20,7 @@
 Name[cs]=Plánovač úloh
 Name[da]=Opgaveskemalægger
 Name[de]=Aufgabenplaner
-Name[el]=Προγραμματισμός εργασιών
+Name[el]=Task Scheduler
 Name[en_GB]=Task Scheduler
 Name[es]=Planificador de tareas
 Name[et]=Tegumihaldur
@@ -77,7 +77,7 @@
 Comment[cs]=Nastavení a plánování úloh
 Comment[da]=Indstil og skemalæg opgaver
 Comment[de]=Aufgaben einrichten und planen
-Comment[el]=Ρύθμιση και προγραμματισμός εργασιών
+Comment[el]=Διαμορφώνει και χρονοπρογραμματίζει εργασίες
 Comment[en_GB]=Configure and schedule tasks
 Comment[es]=Configuración y tareas planificadas
 Comment[et]=Tegumite seadistamine ja ajastamine
@@ -125,4 +125,33 @@
 Comment[zh_CN]=配置并调度计划任务
 Comment[zh_TW]=設定與排程工作
 X-KDE-Keywords=cron,crontab,scheduled,tasks,task,schedule,vixie
+X-KDE-Keywords[ca]=cron,crontab,planificat,tasques,tasca,planificació,vixie
+X-KDE-Keywords[ca@valencia]=cron,crontab,planificat,tasques,tasca,planificació,vixie
+X-KDE-Keywords[cs]=cron,crontab,naplánováno,úlohy,úloha,naplánovat,vixie
+X-KDE-Keywords[da]=cron,crontab,skemalagt,opgaver,opgaveskema,skema,vixie
+X-KDE-Keywords[de]=cron,crontab,scheduled,tasks,task,schedule,vixie,aufgaben,planung
+X-KDE-Keywords[el]=cron,crontab,προγραμματισμένες,εργασίες,εργασία,προγραμματισμός,vixie
+X-KDE-Keywords[es]=cron,crontab,programado,tareas,tarea,programar,vixie
+X-KDE-Keywords[et]=cron,crontab,ajastamine,ülesanded,ülesanne,ajastaja,vixie
+X-KDE-Keywords[fr]=cron,crontab,planification,tâche,tâches,planifiée,vixie
+X-KDE-Keywords[ga]=cron,crontab,sceidealta,tascanna,tasc,sceideal,vixie
+X-KDE-Keywords[hu]=cron,crontab,ütemezett,feladatok,feladat,ütemezés,vixie
+X-KDE-Keywords[ia]=cron,crontab,planificate,cargas,carga,planifica,vixie
+X-KDE-Keywords[it]=cron,crontab,piano,compiti,compito,pianificare,vixie
+X-KDE-Keywords[kk]=cron,crontab,scheduled,tasks,task,schedule,vixie
+X-KDE-Keywords[nb]=cron,crontab,planlagt,oppgaver,oppgave,plan,vixie
+X-KDE-Keywords[nds]=cron,Opgaav,Opgaven,Opgaventabell,plaant,Plaan,vixie
+X-KDE-Keywords[nl]=cron,crontab,gepland,taken,taak,planning,vixie
+X-KDE-Keywords[pl]=cron,crontab,program_planujący,zadania,zadanie,planuj,vixie
+X-KDE-Keywords[pt]=cron,crontab,agendadas,tarefas,tarefa,agendar,vixie
+X-KDE-Keywords[pt_BR]=cron,crontab,agendadas,tarefas,tarefa,agendar,vixie
+X-KDE-Keywords[sr]=cron,crontab,scheduled,tasks,task,schedule,vixie,крон,кронтаб,распоред,задаци,распоређен
+X-KDE-Keywords[sr@ijekavian]=cron,crontab,scheduled,tasks,task,schedule,vixie,крон,кронтаб,распоред,задаци,распоређен
+X-KDE-Keywords[sr@ijekavianlatin]=cron,crontab,scheduled,tasks,task,schedule,vixie,cron,crontab,raspored,zadaci,raspoređen
+X-KDE-Keywords[sr@latin]=cron,crontab,scheduled,tasks,task,schedule,vixie,cron,crontab,raspored,zadaci,raspoređen
+X-KDE-Keywords[sv]=cron,crontab,schemalagd,uppgifter,uppgift,schema,vixie
+X-KDE-Keywords[uk]=cron,crontab,scheduled,tasks,task,schedule,vixie,таблиця 
планування,список планування,завдання,план,запуск
+X-KDE-Keywords[x-test]=xxcron,crontab,scheduled,tasks,task,schedule,vixiexx
+X-KDE-Keywords[zh_CN]=cron,crontab,scheduled,tasks,task,schedule,vixie,计划,计划任务,任务
+X-KDE-Keywords[zh_TW]=cron,crontab,scheduled,tasks,task,schedule,vixie
 Categories=Qt;KDE;X-KDE-settings-system;
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kdeadmin-4.7.4/kcron/src/taskEditorDialog.cpp 
new/kdeadmin-4.8.0/kcron/src/taskEditorDialog.cpp
--- old/kdeadmin-4.7.4/kcron/src/taskEditorDialog.cpp   2011-12-02 
00:54:32.000000000 +0100
+++ new/kdeadmin-4.8.0/kcron/src/taskEditorDialog.cpp   2011-08-07 
17:47:36.000000000 +0200
@@ -95,7 +95,7 @@
        commandLayout->addWidget(command);
 
        command->setMode(KFile::File | KFile::ExistingOnly | KFile::LocalOnly);
-       command->setPath(ctTask->command);
+       command->setUrl(KUrl(ctTask->command));
 
        //Initialize special valid commands
        specialValidCommands << QLatin1String( "cd" );
@@ -186,7 +186,7 @@
 
        command->setFocus();
 
-       connect(command, SIGNAL(textChanged(const QString&)), 
SLOT(slotWizard()));
+       connect(command, SIGNAL(textChanged(QString)), SLOT(slotWizard()));
 
        connect(chkEnabled, SIGNAL(clicked()), SLOT(slotEnabledChanged()));
        connect(chkEnabled, SIGNAL(clicked()), SLOT(slotWizard()));
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kdeadmin-4.7.4/kcron/src/variableEditorDialog.cpp 
new/kdeadmin-4.8.0/kcron/src/variableEditorDialog.cpp
--- old/kdeadmin-4.7.4/kcron/src/variableEditorDialog.cpp       2011-12-02 
00:54:32.000000000 +0100
+++ new/kdeadmin-4.8.0/kcron/src/variableEditorDialog.cpp       2011-08-07 
17:47:36.000000000 +0200
@@ -140,8 +140,8 @@
        show();
 
        // connect them up
-       connect(cmbVariable, SIGNAL(editTextChanged(const QString&)), 
SLOT(slotWizard()));
-       connect(leValue, SIGNAL(textEdited(const QString&)), 
SLOT(slotWizard()));
+       connect(cmbVariable, SIGNAL(editTextChanged(QString)), 
SLOT(slotWizard()));
+       connect(leValue, SIGNAL(textEdited(QString)), SLOT(slotWizard()));
        connect(this, SIGNAL(okClicked()), this, SLOT(slotOk()));
        connect(chkEnabled, SIGNAL(clicked()), SLOT(slotEnabled()));
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kdeadmin-4.7.4/ksystemlog/src/lib/analyzer.cpp 
new/kdeadmin-4.8.0/ksystemlog/src/lib/analyzer.cpp
--- old/kdeadmin-4.7.4/ksystemlog/src/lib/analyzer.cpp  2011-12-02 
00:54:32.000000000 +0100
+++ new/kdeadmin-4.8.0/ksystemlog/src/lib/analyzer.cpp  2011-08-07 
17:47:35.000000000 +0200
@@ -109,9 +109,9 @@
                LogFileReader* logFileReader = createLogFileReader(logFile);
                logFileReaders.append(logFileReader);
                
-               connect(logFileReader, SIGNAL(contentChanged(LogFileReader*, 
Analyzer::ReadingMode, const QStringList&)), this, 
SLOT(logFileChanged(LogFileReader*, Analyzer::ReadingMode, const 
QStringList&)));
-               connect(logFileReader, SIGNAL(statusBarChanged(const 
QString&)), this, SIGNAL(statusBarChanged(const QString&)));
-               connect(logFileReader, SIGNAL(errorOccured(const QString&, 
const QString&)), this, SIGNAL(errorOccured(const QString&, const QString&)));
+               connect(logFileReader, 
SIGNAL(contentChanged(LogFileReader*,Analyzer::ReadingMode,QStringList)), this, 
SLOT(logFileChanged(LogFileReader*,Analyzer::ReadingMode,QStringList)));
+               connect(logFileReader, SIGNAL(statusBarChanged(QString)), this, 
SIGNAL(statusBarChanged(QString)));
+               connect(logFileReader, SIGNAL(errorOccured(QString,QString)), 
this, SIGNAL(errorOccured(QString,QString)));
        }
 }
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/kdeadmin-4.7.4/ksystemlog/src/lib/kioLogFileReader.cpp 
new/kdeadmin-4.8.0/ksystemlog/src/lib/kioLogFileReader.cpp
--- old/kdeadmin-4.7.4/ksystemlog/src/lib/kioLogFileReader.cpp  2011-12-02 
00:54:32.000000000 +0100
+++ new/kdeadmin-4.8.0/ksystemlog/src/lib/kioLogFileReader.cpp  2011-08-07 
17:47:35.000000000 +0200
@@ -61,7 +61,7 @@
 
        d->fileWatch = new KDirWatch(this);
 
-       connect(d->fileWatch, SIGNAL(dirty(const QString&)), this, 
SLOT(watchFile(const QString&)));
+       connect(d->fileWatch, SIGNAL(dirty(QString)), this, 
SLOT(watchFile(QString)));
        d->fileWatch->addFile(logFile.url().path());
        /*
        d->fileWatch.setInterval(1000);
@@ -85,8 +85,8 @@
        connect(d->fileJob, SIGNAL(open(KIO::Job*)), this, 
SLOT(openDone(KIO::Job*)));
        connect(d->fileJob, SIGNAL(close(KIO::Job*)), this, 
SLOT(closeDone(KIO::Job*)));
 
-       connect(d->fileJob, SIGNAL(data(KIO::Job*, const QByteArray&)), this, 
SLOT(dataReceived(KIO::Job*, const QByteArray&)));
-       connect(d->fileJob, SIGNAL(mimetype(KIO::Job*, const QString&)), this, 
SLOT(mimetypeReceived(KIO::Job*, const QString&)));
+       connect(d->fileJob, SIGNAL(data(KIO::Job*,QByteArray)), this, 
SLOT(dataReceived(KIO::Job*,QByteArray)));
+       connect(d->fileJob, SIGNAL(mimetype(KIO::Job*,QString)), this, 
SLOT(mimetypeReceived(KIO::Job*,QString)));
 
        logDebug() << "File opened." << endl;
 }
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/kdeadmin-4.7.4/ksystemlog/src/lib/localLogFileReader.cpp 
new/kdeadmin-4.8.0/ksystemlog/src/lib/localLogFileReader.cpp
--- old/kdeadmin-4.7.4/ksystemlog/src/lib/localLogFileReader.cpp        
2011-12-02 00:54:32.000000000 +0100
+++ new/kdeadmin-4.8.0/ksystemlog/src/lib/localLogFileReader.cpp        
2011-08-07 17:47:35.000000000 +0200
@@ -78,7 +78,7 @@
        Q_D(LocalLogFileReader);
 
        d->watch=new KDirWatch();
-       connect(d->watch, SIGNAL(dirty(const QString&)), this, 
SLOT(logFileModified()));
+       connect(d->watch, SIGNAL(dirty(QString)), this, 
SLOT(logFileModified()));
 
        //Init current file position
        d->previousFilePosition = 0;
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kdeadmin-4.7.4/ksystemlog/src/lib/logManager.cpp 
new/kdeadmin-4.8.0/ksystemlog/src/lib/logManager.cpp
--- old/kdeadmin-4.7.4/ksystemlog/src/lib/logManager.cpp        2011-12-02 
00:54:32.000000000 +0100
+++ new/kdeadmin-4.8.0/ksystemlog/src/lib/logManager.cpp        2011-08-07 
17:47:35.000000000 +0200
@@ -55,7 +55,7 @@
        d->analyzer = NULL;
 
        d->usedView = view;
-       connect(d->usedView, SIGNAL(droppedUrls(const KUrl::List&)), this, 
SLOT(loadDroppedUrls(const KUrl::List&)));
+       connect(d->usedView, SIGNAL(droppedUrls(KUrl::List)), this, 
SLOT(loadDroppedUrls(KUrl::List)));
 }
 
 LogManager::~LogManager() {
@@ -157,11 +157,11 @@
        d->analyzer=mode->createAnalyzer();
        d->analyzer->setLogViewModel(d->usedView->logViewWidget()->model());
 
-       connect(d->analyzer, SIGNAL(statusBarChanged(const QString&)),          
                this, SIGNAL(statusBarChanged(const QString&)));
-       connect(d->analyzer, SIGNAL(errorOccured(const QString&, const 
QString&)),      this, SLOT(showErrorMessage(const QString&, const QString&)));
+       connect(d->analyzer, SIGNAL(statusBarChanged(QString)),                 
                this, SIGNAL(statusBarChanged(QString)));
+       connect(d->analyzer, SIGNAL(errorOccured(QString,QString)),     this, 
SLOT(showErrorMessage(QString,QString)));
        connect(d->analyzer, SIGNAL(logUpdated(int)),                           
                                this, SLOT(updateLog(int)));
 
-       connect(d->analyzer, SIGNAL(readFileStarted(const LogMode&, const 
LogFile&, int, int)),         d->usedView->loadingBar(), 
SLOT(startLoading(const LogMode&, const LogFile&, int, int)));
+       connect(d->analyzer, SIGNAL(readFileStarted(LogMode,LogFile,int,int)),  
d->usedView->loadingBar(), SLOT(startLoading(LogMode,LogFile,int,int)));
        connect(d->analyzer, SIGNAL(openingProgressed()),       
d->usedView->loadingBar(), SLOT(progressLoading()));
        connect(d->analyzer, SIGNAL(readEnded()),                       
d->usedView->loadingBar(), SLOT(endLoading()));
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/kdeadmin-4.7.4/ksystemlog/src/lib/logViewSearchWidget.cpp 
new/kdeadmin-4.8.0/ksystemlog/src/lib/logViewSearchWidget.cpp
--- old/kdeadmin-4.7.4/ksystemlog/src/lib/logViewSearchWidget.cpp       
2011-12-02 00:54:32.000000000 +0100
+++ new/kdeadmin-4.8.0/ksystemlog/src/lib/logViewSearchWidget.cpp       
2011-08-07 17:47:35.000000000 +0200
@@ -79,8 +79,8 @@
 
        searchLabel->setBuddy(searchLine);
 
-       connect(searchLine, SIGNAL(textEdited(const QString&)), this, 
SLOT(findFirst(const QString &)));
-       connect(searchLine, SIGNAL(textEdited(const QString&)), this, 
SLOT(highlightAll()));
+       connect(searchLine, SIGNAL(textEdited(QString)), this, 
SLOT(findFirst(QString)));
+       connect(searchLine, SIGNAL(textEdited(QString)), this, 
SLOT(highlightAll()));
 
        connect(searchLine, SIGNAL(returnPressed()), this, SLOT(findNext()));
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/kdeadmin-4.7.4/ksystemlog/src/lib/processOutputLogFileReader.cpp 
new/kdeadmin-4.8.0/ksystemlog/src/lib/processOutputLogFileReader.cpp
--- old/kdeadmin-4.7.4/ksystemlog/src/lib/processOutputLogFileReader.cpp        
2011-12-02 00:54:32.000000000 +0100
+++ new/kdeadmin-4.8.0/ksystemlog/src/lib/processOutputLogFileReader.cpp        
2011-08-07 17:47:35.000000000 +0200
@@ -115,7 +115,7 @@
 
        d->process = new QProcess();
        connect(d->process, SIGNAL(readyReadStandardOutput()), this, 
SLOT(logFileModified()));
-       connect(d->process, SIGNAL(finished(int, QProcess::ExitStatus)), this, 
SLOT(emitProcessOutput(int, QProcess::ExitStatus)));
+       connect(d->process, SIGNAL(finished(int,QProcess::ExitStatus)), this, 
SLOT(emitProcessOutput(int,QProcess::ExitStatus)));
 
        d->process->start(d->logFile.url().path(), QIODevice::ReadOnly | 
QIODevice::Text);
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kdeadmin-4.7.4/ksystemlog/src/lib/view.cpp 
new/kdeadmin-4.8.0/ksystemlog/src/lib/view.cpp
--- old/kdeadmin-4.7.4/ksystemlog/src/lib/view.cpp      2011-12-02 
00:54:32.000000000 +0100
+++ new/kdeadmin-4.8.0/ksystemlog/src/lib/view.cpp      2011-08-07 
17:47:35.000000000 +0200
@@ -91,7 +91,7 @@
        topLayout->addWidget(d->logViewFilterWidget);
        
        d->logViewWidget=new LogViewWidget(this);
-       connect(d->logViewWidget, SIGNAL(columnsChanged(const 
LogViewColumns&)), d->logViewFilterWidget, SLOT(updateFilterColumns(const 
LogViewColumns&)));
+       connect(d->logViewWidget, SIGNAL(columnsChanged(LogViewColumns)), 
d->logViewFilterWidget, SLOT(updateFilterColumns(LogViewColumns)));
        
        d->logViewFilterWidget->filterLine()->setTreeWidget(d->logViewWidget);
        topLayout->addWidget(d->logViewWidget);
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kdeadmin-4.7.4/ksystemlog/src/loggerDialog.cpp 
new/kdeadmin-4.8.0/ksystemlog/src/loggerDialog.cpp
--- old/kdeadmin-4.7.4/ksystemlog/src/loggerDialog.cpp  2011-12-02 
00:54:32.000000000 +0100
+++ new/kdeadmin-4.8.0/ksystemlog/src/loggerDialog.cpp  2011-08-07 
17:47:35.000000000 +0200
@@ -55,9 +55,9 @@
        connect(messageActivation, SIGNAL(toggled(bool)), this, 
SLOT(changeMessageActivation(bool)));
 
 
-       connect(file, SIGNAL(textChanged(const QString&)), this, 
SLOT(textChanged()));
-       connect(message, SIGNAL(textChanged(const QString&)), this, 
SLOT(textChanged()));
-       connect(tag, SIGNAL(textChanged(const QString&)), this, 
SLOT(textChanged()));
+       connect(file, SIGNAL(textChanged(QString)), this, SLOT(textChanged()));
+       connect(message, SIGNAL(textChanged(QString)), this, 
SLOT(textChanged()));
+       connect(tag, SIGNAL(textChanged(QString)), this, SLOT(textChanged()));
 
        buildMaps();
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kdeadmin-4.7.4/ksystemlog/src/mainWindow.cpp 
new/kdeadmin-4.8.0/ksystemlog/src/mainWindow.cpp
--- old/kdeadmin-4.7.4/ksystemlog/src/mainWindow.cpp    2011-12-02 
00:54:32.000000000 +0100
+++ new/kdeadmin-4.8.0/ksystemlog/src/mainWindow.cpp    2011-08-07 
17:47:35.000000000 +0200
@@ -220,7 +220,7 @@
 
        d->tabs=new TabLogViewsWidget();
 
-       connect(d->tabs, SIGNAL(statusBarChanged(const QString&)), this, 
SLOT(changeStatusBar(const QString&)));
+       connect(d->tabs, SIGNAL(statusBarChanged(QString)), this, 
SLOT(changeStatusBar(QString)));
        connect(d->tabs, SIGNAL(logManagerCreated(LogManager*)), this, 
SLOT(prepareCreatedLogManager(LogManager*)));
        connect(d->tabs, SIGNAL(currentChanged(int)), this, 
SLOT(changeCurrentTab()));
 
@@ -274,13 +274,13 @@
        manager->usedView()->logViewWidget()->addAction(d->detailAction);
 
        //Log Manager and View signals
-       connect(manager, SIGNAL(windowTitleChanged(const QString&)), this, 
SLOT(changeWindowTitle(const QString&)));
-       connect(manager, SIGNAL(statusBarChanged(const QString&)), this, 
SLOT(changeStatusBar(const QString&)));
-       connect(manager, SIGNAL(logUpdated(View*, int)), this, 
SLOT(updateStatusBar()));
+       connect(manager, SIGNAL(windowTitleChanged(QString)), this, 
SLOT(changeWindowTitle(QString)));
+       connect(manager, SIGNAL(statusBarChanged(QString)), this, 
SLOT(changeStatusBar(QString)));
+       connect(manager, SIGNAL(logUpdated(View*,int)), this, 
SLOT(updateStatusBar()));
        connect(manager, SIGNAL(reloaded()), this, SLOT(changeCurrentTab()));
 
        connect(manager->usedView(), SIGNAL(searchFilterChanged()), this, 
SLOT(updateStatusBar()));
-       connect(manager->usedView()->logViewWidget(), SIGNAL(itemDoubleClicked 
(QTreeWidgetItem*, int)), this, SLOT(showDetailsDialog()));
+       connect(manager->usedView()->logViewWidget(), 
SIGNAL(itemDoubleClicked(QTreeWidgetItem*,int)), this, 
SLOT(showDetailsDialog()));
        connect(manager->usedView()->logViewWidget(), 
SIGNAL(itemSelectionChanged()), this, SLOT(updateSelection()));
        connect(manager->usedView()->logViewWidget()->model(), 
SIGNAL(processingMultipleInsertions(bool)), this, SLOT(updateReloading()));
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/kdeadmin-4.7.4/ksystemlog/src/modes/base/multipleFileList.cpp 
new/kdeadmin-4.8.0/ksystemlog/src/modes/base/multipleFileList.cpp
--- old/kdeadmin-4.7.4/ksystemlog/src/modes/base/multipleFileList.cpp   
2011-12-02 00:54:32.000000000 +0100
+++ new/kdeadmin-4.8.0/ksystemlog/src/modes/base/multipleFileList.cpp   
2011-08-07 17:47:35.000000000 +0200
@@ -67,7 +67,7 @@
        fileListHelper.prepareButton(removeAll, KIcon( QLatin1String( 
"trash-empty" )), this, SLOT(removeAllItems()), fileList);
        
        connect(fileList, SIGNAL(itemSelectionChanged()), this, 
SLOT(updateButtons()));
-       connect(fileList, SIGNAL(itemDoubleClicked(QTreeWidgetItem*, int)), 
this, SLOT(modifyItem(QTreeWidgetItem*)));
+       connect(fileList, SIGNAL(itemDoubleClicked(QTreeWidgetItem*,int)), 
this, SLOT(modifyItem(QTreeWidgetItem*)));
        connect(this, SIGNAL(fileListChanged()), this, SLOT(updateButtons()));
        
        connect(&addButtons, SIGNAL(buttonClicked(int)), this, 
SLOT(addItem(int)));
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kdeadmin-4.7.4/ksystemlog/src/tabLogViewsWidget.cpp 
new/kdeadmin-4.8.0/ksystemlog/src/tabLogViewsWidget.cpp
--- old/kdeadmin-4.7.4/ksystemlog/src/tabLogViewsWidget.cpp     2011-12-02 
00:54:32.000000000 +0100
+++ new/kdeadmin-4.8.0/ksystemlog/src/tabLogViewsWidget.cpp     2011-08-07 
17:47:35.000000000 +0200
@@ -74,8 +74,8 @@
        //setContextMenuPolicy(Qt::ActionsContextMenu);
 
        connect(this, SIGNAL(mouseDoubleClick()), this, SLOT(createTab()));
-       connect(this, SIGNAL(contextMenu(const QPoint&)), this, 
SLOT(showContextMenu(const QPoint&)));
-       connect(this, SIGNAL(contextMenu(QWidget*, const QPoint&)), this, 
SLOT(showContextMenu(QWidget*, const QPoint&)));
+       connect(this, SIGNAL(contextMenu(QPoint)), this, 
SLOT(showContextMenu(QPoint)));
+       connect(this, SIGNAL(contextMenu(QWidget*,QPoint)), this, 
SLOT(showContextMenu(QWidget*,QPoint)));
 
        //TODO Use this (need to connect to movedTab(int, int) signal and 
update the QList
        //setTabReorderingEnabled(true);
@@ -223,8 +223,8 @@
        LogManager* logManager=new LogManager(view);
 
        //Signals from LogManager to Main Class
-       connect(logManager, SIGNAL(tabTitleChanged(View*, const QIcon&, const 
QString&)), this, SLOT(changeTab(View*, const QIcon&, const QString&)));
-       connect(logManager, SIGNAL(logUpdated(View*, int)), this, 
SLOT(changeTitleAddedLines(View*, int)));
+       connect(logManager, SIGNAL(tabTitleChanged(View*,QIcon,QString)), this, 
SLOT(changeTab(View*,QIcon,QString)));
+       connect(logManager, SIGNAL(logUpdated(View*,int)), this, 
SLOT(changeTitleAddedLines(View*,int)));
 
        TabLogManager* tabLogManager = new TabLogManager(logManager);
        d->tabLogManagers.append(tabLogManager);
@@ -364,23 +364,23 @@
 
 void TabLogViewsWidget::fileSaveCurrentView() {
        LogViewExport logViewExport(this, 
activeLogManager()->usedView()->logViewWidget());
-       connect(&logViewExport, SIGNAL(statusBarChanged(const QString&)), this, 
SIGNAL(statusBarChanged(const QString&)));
+       connect(&logViewExport, SIGNAL(statusBarChanged(QString)), this, 
SIGNAL(statusBarChanged(QString)));
        logViewExport.fileSave();
 }
 
 void TabLogViewsWidget::copyToClipboardCurrentView() {
        LogViewExport logViewExport(this, 
activeLogManager()->usedView()->logViewWidget());
-       connect(&logViewExport, SIGNAL(statusBarChanged(const QString&)), this, 
SIGNAL(statusBarChanged(const QString&)));
+       connect(&logViewExport, SIGNAL(statusBarChanged(QString)), this, 
SIGNAL(statusBarChanged(QString)));
        logViewExport.copyToClipboard();
 }
 void TabLogViewsWidget::sendMailCurrentView() {
        LogViewExport logViewExport(this, 
activeLogManager()->usedView()->logViewWidget());
-       connect(&logViewExport, SIGNAL(statusBarChanged(const QString&)), this, 
SIGNAL(statusBarChanged(const QString&)));
+       connect(&logViewExport, SIGNAL(statusBarChanged(QString)), this, 
SIGNAL(statusBarChanged(QString)));
        logViewExport.sendMail();
 }
 void TabLogViewsWidget::printSelectionCurrentView() {
        LogViewExport logViewExport(this, 
activeLogManager()->usedView()->logViewWidget());
-       connect(&logViewExport, SIGNAL(statusBarChanged(const QString&)), this, 
SIGNAL(statusBarChanged(const QString&)));
+       connect(&logViewExport, SIGNAL(statusBarChanged(QString)), this, 
SIGNAL(statusBarChanged(QString)));
        logViewExport.printSelection();
 }
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/kdeadmin-4.7.4/ksystemlog/tests/kioLogFileReaderTest.cpp 
new/kdeadmin-4.8.0/ksystemlog/tests/kioLogFileReaderTest.cpp
--- old/kdeadmin-4.7.4/ksystemlog/tests/kioLogFileReaderTest.cpp        
2011-12-02 00:54:32.000000000 +0100
+++ new/kdeadmin-4.8.0/ksystemlog/tests/kioLogFileReaderTest.cpp        
2011-08-07 17:47:35.000000000 +0200
@@ -68,7 +68,7 @@
        logFileReader->open();
        
 
-       connect(logFileReader, SIGNAL(lineRead(const QString&)), this, 
SLOT(readLine(const QString&)));
+       connect(logFileReader, SIGNAL(lineRead(QString)), this, 
SLOT(readLine(QString)));
        
        QTest::qWait(100000);
        
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/kdeadmin-4.7.4/ksystemlog/tests/systemAnalyzerTest.cpp 
new/kdeadmin-4.8.0/ksystemlog/tests/systemAnalyzerTest.cpp
--- old/kdeadmin-4.7.4/ksystemlog/tests/systemAnalyzerTest.cpp  2011-12-02 
00:54:32.000000000 +0100
+++ new/kdeadmin-4.8.0/ksystemlog/tests/systemAnalyzerTest.cpp  2011-08-07 
17:47:35.000000000 +0200
@@ -138,7 +138,7 @@
        systemAnalyzer->setLogFiles(logFiles);
 
 
-       QSignalSpy stateSpy(systemAnalyzer, SIGNAL( logUpdated(int) ));
+       QSignalSpy stateSpy(systemAnalyzer, SIGNAL(logUpdated(int)));
        QList<QVariant> arguments;
 
        //Each watching relaunch a reading
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kdeadmin-4.7.4/kuser/ku_configdlg.cpp 
new/kdeadmin-4.8.0/kuser/ku_configdlg.cpp
--- old/kdeadmin-4.7.4/kuser/ku_configdlg.cpp   2011-12-02 00:54:32.000000000 
+0100
+++ new/kdeadmin-4.8.0/kuser/ku_configdlg.cpp   2011-08-07 17:47:36.000000000 
+0200
@@ -146,10 +146,10 @@
   mLdif.startParsing();
   KIO::Job *job = KIO::get( _url, KIO::Reload, KIO::HideProgressInfo );
 //  job->addMetaData("no-auth-prompt","true");
-  connect( job, SIGNAL( data( KIO::Job*, const QByteArray& ) ),
-    this, SLOT( loadData( KIO::Job*, const QByteArray& ) ) );
-  connect( job, SIGNAL( result( KJob* ) ),
-    this, SLOT( loadResult( KJob* ) ) );
+  connect( job, SIGNAL(data(KIO::Job*,QByteArray)),
+    this, SLOT(loadData(KIO::Job*,QByteArray)) );
+  connect( job, SIGNAL(result(KJob*)),
+    this, SLOT(loadResult(KJob*)) );
 
   mProg = new QProgressDialog( 0 );
   mProg->setLabel( new QLabel(_url.prettyUrl()) );
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kdeadmin-4.7.4/kuser/ku_edituser.cpp 
new/kdeadmin-4.8.0/kuser/ku_edituser.cpp
--- old/kdeadmin-4.7.4/kuser/ku_edituser.cpp    2011-12-02 00:54:32.000000000 
+0100
+++ new/kdeadmin-4.8.0/kuser/ku_edituser.cpp    2011-08-07 17:47:36.000000000 
+0200
@@ -121,7 +121,7 @@
 //    whatstr = i18n("WHAT IS THIS: User Id");
     leid->setValidator(new QIntValidator(frame));
     addRow(frame, layout, row++, leid, i18n("&User ID:"), whatstr);
-    connect(leid, SIGNAL(textChanged(const QString &)), this, SLOT(changed()));
+    connect(leid, SIGNAL(textChanged(QString)), this, SLOT(changed()));
 
     if ( !ro ) {
       pbsetpwd = new QPushButton(i18n("Set &Password..."), frame);
@@ -133,19 +133,19 @@
     lefname = new KLineEdit(frame);
 //    whatstr = i18n("WHAT IS THIS: Full Name");
     addRow(frame, layout, row++, lefname, i18n("Full &name:"), whatstr);
-    connect(lefname, SIGNAL(textChanged(const QString &)), this, 
SLOT(changed()));
+    connect(lefname, SIGNAL(textChanged(QString)), this, SLOT(changed()));
     lefname->setFocus();
 
     if ( KU_Global::users()->getCaps() & KU_Users::Cap_InetOrg ) {
       lesurname = new KLineEdit(frame);
 //    whatstr = i18n("WHAT IS THIS: Surname");
       addRow(frame, layout, row++, lesurname, i18n("Surname:"), whatstr);
-      connect(lesurname, SIGNAL(textChanged(const QString &)), this, 
SLOT(changed()));
+      connect(lesurname, SIGNAL(textChanged(QString)), this, SLOT(changed()));
 
       lemail = new KLineEdit(frame);
 //    whatstr = i18n("WHAT IS THIS: Email");
       addRow(frame, layout, row++, lemail, i18n("Email address:"), whatstr);
-      connect(lemail, SIGNAL(textChanged(const QString &)), this, 
SLOT(changed()));
+      connect(lemail, SIGNAL(textChanged(QString)), this, SLOT(changed()));
     }
 
     leshell = new KComboBox(true, frame);
@@ -155,13 +155,13 @@
     QStringList shells = readShells();
     shells.sort();
     leshell->insertItems( 1, shells );
-    connect(leshell, SIGNAL(activated(const QString &)), this, 
SLOT(changed()));
-    connect(leshell, SIGNAL(editTextChanged(const QString &)), this, 
SLOT(changed()));
+    connect(leshell, SIGNAL(activated(QString)), this, SLOT(changed()));
+    connect(leshell, SIGNAL(editTextChanged(QString)), this, SLOT(changed()));
 //    whatstr = i18n("WHAT IS THIS: Login Shell");
     addRow(frame, layout, row++, leshell, i18n("&Login shell:"), whatstr);
 
     lehome = new KLineEdit(frame);
-    connect(lehome, SIGNAL(textChanged(const QString &)), this, 
SLOT(changed()));
+    connect(lehome, SIGNAL(textChanged(QString)), this, SLOT(changed()));
 //    whatstr = i18n("WHAT IS THIS: Home Directory");
     addRow(frame, layout, row++, lehome, i18n("&Home folder:"), whatstr);
 
@@ -169,37 +169,37 @@
     // differently than Linux.
     if ( KU_Global::users()->getCaps() & KU_Users::Cap_BSD ) {
       leoffice = new KLineEdit(frame);
-      connect(leoffice, SIGNAL(textChanged(const QString &)), this, 
SLOT(changed()));
+      connect(leoffice, SIGNAL(textChanged(QString)), this, SLOT(changed()));
 //    whatstr = i18n("WHAT IS THIS: Office");
       addRow(frame, layout, row++, leoffice, i18n("&Office:"), whatstr);
 
       leophone = new KLineEdit(frame);
-      connect(leophone, SIGNAL(textChanged(const QString &)), this, 
SLOT(changed()));
+      connect(leophone, SIGNAL(textChanged(QString)), this, SLOT(changed()));
 //    whatstr = i18n("WHAT IS THIS: Office Phone");
       addRow(frame, layout, row++, leophone, i18n("Offi&ce Phone:"), whatstr);
 
       lehphone = new KLineEdit(frame);
-      connect(lehphone, SIGNAL(textChanged(const QString &)), this, 
SLOT(changed()));
+      connect(lehphone, SIGNAL(textChanged(QString)), this, SLOT(changed()));
 //    whatstr = i18n("WHAT IS THIS: Home Phone");
       addRow(frame, layout, row++, lehphone, i18n("Ho&me Phone:"), whatstr);
 
       leclass = new KLineEdit(frame);
-      connect(leclass, SIGNAL(textChanged(const QString &)), this, 
SLOT(changed()));
+      connect(leclass, SIGNAL(textChanged(QString)), this, SLOT(changed()));
 //    whatstr = i18n("WHAT IS THIS: Login class");
       addRow(frame, layout, row++, leclass, i18n("Login class:"), whatstr, 
true);
     } else {
       leoffice1 = new KLineEdit(frame);
-      connect(leoffice1, SIGNAL(textChanged(const QString &)), this, 
SLOT(changed()));
+      connect(leoffice1, SIGNAL(textChanged(QString)), this, SLOT(changed()));
 //    whatstr = i18n("WHAT IS THIS: Office1");
       addRow(frame, layout, row++, leoffice1, i18n("&Office #1:"), whatstr);
 
       leoffice2 = new KLineEdit(frame);
-      connect(leoffice2, SIGNAL(textChanged(const QString &)), this, 
SLOT(changed()));
+      connect(leoffice2, SIGNAL(textChanged(QString)), this, SLOT(changed()));
 //    whatstr = i18n("WHAT IS THIS: Office2");
       addRow(frame, layout, row++, leoffice2, i18n("O&ffice #2:"), whatstr);
 
       leaddress = new KLineEdit(frame);
-      connect(leaddress, SIGNAL(textChanged(const QString &)), this, 
SLOT(changed()));
+      connect(leaddress, SIGNAL(textChanged(QString)), this, SLOT(changed()));
 //    whatstr = i18n("WHAT IS THIS: Address");
       addRow(frame, layout, row++, leaddress, i18n("&Address:"), whatstr);
     }
@@ -260,7 +260,7 @@
     cbexpire = new QCheckBox( i18n("Never"), frame );
     layout->addWidget( cbexpire, row++, 3 );
 
-    connect( lesexpire, SIGNAL(valueChanged(const QDateTime&)), this, 
SLOT(changed()) );
+    connect( lesexpire, SIGNAL(valueChanged(QDateTime)), this, SLOT(changed()) 
);
     connect( cbexpire, SIGNAL(stateChanged(int)), this, SLOT(changed()) );
     connect( cbexpire, SIGNAL(toggled(bool)), lesexpire, 
SLOT(setDisabled(bool)) );
   }
@@ -276,42 +276,42 @@
 //  whatstr = i18n("WHAT IS THIS: Rid");
     lerid->setValidator(new QIntValidator(frame));
     addRow(frame, layout, row++, lerid, i18n("RID:"), whatstr);
-    connect(lerid, SIGNAL(textChanged(const QString &)), this, 
SLOT(changed()));
+    connect(lerid, SIGNAL(textChanged(QString)), this, SLOT(changed()));
 
     leliscript = new KLineEdit(frame);
 //  whatstr = i18n("WHAT IS THIS: Login script");
     addRow(frame, layout, row++, leliscript, i18n("Login script:"), whatstr);
-    connect(leliscript, SIGNAL(textChanged(const QString &)), this, 
SLOT(changed()));
+    connect(leliscript, SIGNAL(textChanged(QString)), this, SLOT(changed()));
 
     leprofile = new KLineEdit(frame);
 //  whatstr = i18n("WHAT IS THIS: Login script");
     addRow(frame, layout, row++, leprofile, i18n("Profile path:"), whatstr);
-    connect(leprofile, SIGNAL(textChanged(const QString &)), this, 
SLOT(changed()));
+    connect(leprofile, SIGNAL(textChanged(QString)), this, SLOT(changed()));
 
     lehomedrive = new KLineEdit(frame);
 //  whatstr = i18n("WHAT IS THIS: Login script");
     addRow(frame, layout, row++, lehomedrive, i18n("Home drive:"), whatstr);
-    connect(lehomedrive, SIGNAL(textChanged(const QString &)), this, 
SLOT(changed()));
+    connect(lehomedrive, SIGNAL(textChanged(QString)), this, SLOT(changed()));
 
     lehomepath = new KLineEdit(frame);
 //  whatstr = i18n("WHAT IS THIS: Login script");
     addRow(frame, layout, row++, lehomepath, i18n("Home path:"), whatstr);
-    connect(lehomepath, SIGNAL(textChanged(const QString &)), this, 
SLOT(changed()));
+    connect(lehomepath, SIGNAL(textChanged(QString)), this, SLOT(changed()));
 
     leworkstations = new KLineEdit(frame);
 //  whatstr = i18n("WHAT IS THIS: Login script");
     addRow(frame, layout, row++, leworkstations, i18n("User workstations:"), 
whatstr);
-    connect(leworkstations, SIGNAL(textChanged(const QString &)), this, 
SLOT(changed()));
+    connect(leworkstations, SIGNAL(textChanged(QString)), this, 
SLOT(changed()));
 
     ledomain = new KLineEdit(frame);
 //  whatstr = i18n("WHAT IS THIS: Login script");
     addRow(frame, layout, row++, ledomain, i18n("Domain name:"), whatstr);
-    connect(ledomain, SIGNAL(textChanged(const QString &)), this, 
SLOT(changed()));
+    connect(ledomain, SIGNAL(textChanged(QString)), this, SLOT(changed()));
 
     ledomsid = new KLineEdit(frame);
 //  whatstr = i18n("WHAT IS THIS: Login script");
     addRow(frame, layout, row++, ledomsid, i18n("Domain SID:"), whatstr);
-    connect(ledomsid, SIGNAL(textChanged(const QString &)), this, 
SLOT(changed()));
+    connect(ledomsid, SIGNAL(textChanged(QString)), this, SLOT(changed()));
 
     cbsamba = new QCheckBox(frame);
     connect(cbsamba, SIGNAL(stateChanged(int)), this, SLOT(changed()));
@@ -339,9 +339,9 @@
       layout->addWidget( pbprigr, 1, 1 );
       connect( pbprigr, SIGNAL(clicked()), this, SLOT(setpgroup()) );
     }
-    connect( lstgrp, SIGNAL(itemClicked(QListWidgetItem *)), this, 
SLOT(gchanged()) );
+    connect( lstgrp, SIGNAL(itemClicked(QListWidgetItem*)), this, 
SLOT(gchanged()) );
   }
-//  connect( this, SIGNAL( okClicked() ), SLOT( slotOk() ) );
+//  connect( this, SIGNAL(okClicked()), SLOT(slotOk()) );
 }
 
 KU_EditUser::KU_EditUser( const QList<int> &selected,
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kdeadmin-4.7.4/kuser/ku_groupldap.cpp 
new/kdeadmin-4.8.0/kuser/ku_groupldap.cpp
--- old/kdeadmin-4.7.4/kuser/ku_groupldap.cpp   2011-12-02 00:54:32.000000000 
+0100
+++ new/kdeadmin-4.8.0/kuser/ku_groupldap.cpp   2011-08-07 17:47:36.000000000 
+0200
@@ -163,11 +163,11 @@
 
   KLDAP::LdapSearch search;
   connect( &search,
-    SIGNAL( data( KLDAP::LdapSearch*, const KLDAP::LdapObject& ) ),
-    this, SLOT ( data ( KLDAP::LdapSearch*, const KLDAP::LdapObject&) ) );
+    SIGNAL(data(KLDAP::LdapSearch*,KLDAP::LdapObject)),
+    this, SLOT (data(KLDAP::LdapSearch*,KLDAP::LdapObject)) );
   connect( &search,
-    SIGNAL( result( KLDAP::LdapSearch* ) ),
-    this, SLOT ( result ( KLDAP::LdapSearch* ) ) );
+    SIGNAL(result(KLDAP::LdapSearch*)),
+    this, SLOT (result(KLDAP::LdapSearch*)) );
 
   if (search.search( mUrl )) {
     mProg->exec();
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kdeadmin-4.7.4/kuser/ku_mainview.cpp 
new/kdeadmin-4.8.0/kuser/ku_mainview.cpp
--- old/kdeadmin-4.7.4/kuser/ku_mainview.cpp    2011-12-02 00:54:32.000000000 
+0100
+++ new/kdeadmin-4.8.0/kuser/ku_mainview.cpp    2011-08-07 17:47:36.000000000 
+0200
@@ -68,8 +68,8 @@
   groupview->setUniformRowHeights( true );
   addTab( groupview, i18n("Groups") );
 
-  connect(userview, SIGNAL(activated(const QModelIndex&)), this, 
SLOT(userSelected()));
-  connect(groupview, SIGNAL(activated(const QModelIndex&)), this, 
SLOT(groupSelected()));
+  connect(userview, SIGNAL(activated(QModelIndex)), this, 
SLOT(userSelected()));
+  connect(groupview, SIGNAL(activated(QModelIndex)), this, 
SLOT(groupSelected()));
 
   connect(this, SIGNAL(currentChanged(int)), this, SLOT(slotTabChanged()));
 }
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kdeadmin-4.7.4/kuser/ku_mainwidget.cpp 
new/kdeadmin-4.8.0/kuser/ku_mainwidget.cpp
--- old/kdeadmin-4.7.4/kuser/ku_mainwidget.cpp  2011-12-02 00:54:32.000000000 
+0100
+++ new/kdeadmin-4.8.0/kuser/ku_mainwidget.cpp  2011-08-07 17:47:36.000000000 
+0200
@@ -129,7 +129,7 @@
 void KU_MainWidget::properties()
 {
   KU_ConfigDlg *configdlg = new KU_ConfigDlg( KU_Global::kcfg(), this );
-  connect(configdlg, SIGNAL(settingsChanged(const QString&)), this, 
SLOT(slotApplySettings()));
+  connect(configdlg, SIGNAL(settingsChanged(QString)), this, 
SLOT(slotApplySettings()));
 
   configdlg->show();
 }
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kdeadmin-4.7.4/kuser/ku_selectconn.cpp 
new/kdeadmin-4.8.0/kuser/ku_selectconn.cpp
--- old/kdeadmin-4.7.4/kuser/ku_selectconn.cpp  2011-12-02 00:54:32.000000000 
+0100
+++ new/kdeadmin-4.8.0/kuser/ku_selectconn.cpp  2011-08-07 17:47:36.000000000 
+0200
@@ -95,7 +95,7 @@
   KU_PrefsBase kcfg( config, newconn );
 
   KU_ConfigDlg cfgdlg( &kcfg, this );
-  connect(&cfgdlg, SIGNAL(settingsChanged(const QString&)), this, 
SLOT(slotNewApplySettings()));
+  connect(&cfgdlg, SIGNAL(settingsChanged(QString)), this, 
SLOT(slotNewApplySettings()));
   cfgdlg.exec();
 
   if ( newconn.isEmpty() )
@@ -120,7 +120,7 @@
   kcfg.readConfig();
 
   KU_ConfigDlg cfgdlg( &kcfg, this );
-  connect( &cfgdlg, SIGNAL(settingsChanged(const QString&)), this, 
SLOT(slotApplySettings()) );
+  connect( &cfgdlg, SIGNAL(settingsChanged(QString)), this, 
SLOT(slotApplySettings()) );
   cfgdlg.exec();
 }
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kdeadmin-4.7.4/kuser/ku_userldap.cpp 
new/kdeadmin-4.8.0/kuser/ku_userldap.cpp
--- old/kdeadmin-4.7.4/kuser/ku_userldap.cpp    2011-12-02 00:54:32.000000000 
+0100
+++ new/kdeadmin-4.8.0/kuser/ku_userldap.cpp    2011-08-07 17:47:36.000000000 
+0200
@@ -236,11 +236,11 @@
   KLDAP::LdapSearch search;
 
   connect( &search,
-    SIGNAL( data( KLDAP::LdapSearch*, const KLDAP::LdapObject& ) ),
-    this, SLOT ( data ( KLDAP::LdapSearch*, const KLDAP::LdapObject&) ) );
+    SIGNAL(data(KLDAP::LdapSearch*,KLDAP::LdapObject)),
+    this, SLOT (data(KLDAP::LdapSearch*,KLDAP::LdapObject)) );
   connect( &search,
-    SIGNAL( result( KLDAP::LdapSearch* ) ),
-    this, SLOT ( result ( KLDAP::LdapSearch* ) ) );
+    SIGNAL(result(KLDAP::LdapSearch*)),
+    this, SLOT (result(KLDAP::LdapSearch*)) );
 
   if (search.search( mUrl )) {
     mProg->exec();
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/kdeadmin-4.7.4/system-config-printer-kde/system-config-printer-kde.desktop 
new/kdeadmin-4.8.0/system-config-printer-kde/system-config-printer-kde.desktop
--- 
old/kdeadmin-4.7.4/system-config-printer-kde/system-config-printer-kde.desktop  
    2011-12-02 00:54:32.000000000 +0100
+++ 
new/kdeadmin-4.8.0/system-config-printer-kde/system-config-printer-kde.desktop  
    2012-01-18 19:50:19.000000000 +0100
@@ -20,7 +20,7 @@
 Name[cs]=Nastavení tiskárny
 Name[da]=Konfiguration af printer
 Name[de]=Druckereinrichtung
-Name[el]=Ρυθμίσεις εκτυπωτή
+Name[el]=Διαμόρφωση εκτυπωτή
 Name[en_GB]=Printer Configuration
 Name[es]=Configuración de la impresora
 Name[et]=Printeri seadistamine
@@ -75,7 +75,7 @@
 Comment[cs]=Nastavte lokální a vzdálené tiskárny
 Comment[da]=Indstil lokale og eksterne printere
 Comment[de]=Drucker einrichten
-Comment[el]=Ρύθμιση τοπικών και απομακρυσμένων εκτυπωτών
+Comment[el]=Διαμόρφωση τοπικών και απομακρυσμένων εκτυπωτών
 Comment[en_GB]=Configure local and remote Printers
 Comment[es]=Configurar impresoras locales y remotas
 Comment[et]=Kohalike ja võrguprinterite seadistamine
@@ -122,5 +122,34 @@
 Comment[zh_TW]=設定本地與遠端印表機
 
 X-KDE-Keywords=printer,printers,printing
+X-KDE-Keywords[ca]=impressora,impressores,impressió
+X-KDE-Keywords[ca@valencia]=impressora,impressores,impressió
+X-KDE-Keywords[cs]=tiskárna,tiskárny,tisk
+X-KDE-Keywords[da]=printer,printere,udskrift,udskrivning
+X-KDE-Keywords[de]=drucker,drucken
+X-KDE-Keywords[el]=εκτυπωτής,εκτυπωτές,εκτύπωση
+X-KDE-Keywords[es]=impresora,impresoras,impresión
+X-KDE-Keywords[et]=printer,printerid,trükkimine
+X-KDE-Keywords[fr]=imprimante,imprimantes,impression
+X-KDE-Keywords[ga]=printéar,printéir,priontáil
+X-KDE-Keywords[hu]=nyomtató,nyomtatók,nyomtatás
+X-KDE-Keywords[ia]=imprimitor,imprimitores,imprimente
+X-KDE-Keywords[it]=stampante,stampanti,stampare
+X-KDE-Keywords[kk]=printer,printers,printing
+X-KDE-Keywords[nb]=skriver,skriver,utskrift
+X-KDE-Keywords[nds]=drucken,Drucker,Druckers
+X-KDE-Keywords[nl]=printer,printers,bezig met printen
+X-KDE-Keywords[pl]=drukarka,drukarki,drukowanie
+X-KDE-Keywords[pt]=impressora,impressoras,impressão
+X-KDE-Keywords[pt_BR]=impressora,impressoras,impressão
+X-KDE-Keywords[sr]=printer,printers,printing,штампач,штампање
+X-KDE-Keywords[sr@ijekavian]=printer,printers,printing,штампач,штампање
+X-KDE-Keywords[sr@ijekavianlatin]=printer,printers,printing,štampač,štampanje
+X-KDE-Keywords[sr@latin]=printer,printers,printing,štampač,štampanje
+X-KDE-Keywords[sv]=skrivare,utskrift
+X-KDE-Keywords[uk]=printer,printers,printing,принтер,друкарка,друк,надрукувати
+X-KDE-Keywords[x-test]=xxprinter,printers,printingxx
+X-KDE-Keywords[zh_CN]=printer,printers,printing,打印,打印机
+X-KDE-Keywords[zh_TW]=printer,printers,printing
 
 Categories=Qt;KDE;System;

-- 
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to