Rename KUniqueApplication to TDEUniqueApplication

Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
master
Michele Calgaro 2 weeks ago
parent 7fca76f7a7
commit 59e9205d8b
Signed by: MicheleC
GPG Key ID: 2A75B7CA8ADED5CF

@ -20,7 +20,6 @@
#include <tdecmdlineargs.h>
#include <tdeaboutdata.h>
#include <tdelocale.h>
#include <kuniqueapplication.h>
#include <dcopclient.h>
#include <tdeglobal.h>
#include <kgenericfactory.h>

@ -3,9 +3,9 @@
#ifndef KSVAPPLICATION_H
#define KSVAPPLICATION_H
#include <kuniqueapplication.h>
#include <tdeuniqueapplication.h>
class KSVApplication : public KUniqueApplication
class KSVApplication : public TDEUniqueApplication
{
TQ_OBJECT

@ -66,9 +66,9 @@ int main( int argc, char **argv ) {
ksv::about = &about;
TDECmdLineArgs::init(argc, argv, &about);
KUniqueApplication::addCmdLineOptions ();
TDEUniqueApplication::addCmdLineOptions ();
if (!KUniqueApplication::start()) {
if (!TDEUniqueApplication::start()) {
cerr << "SysV-Init Editor is already running!" << endl;
return -1;
}

@ -22,7 +22,7 @@
*
*/
#include <kuniqueapplication.h>
#include <tdeuniqueapplication.h>
#include <tdecmdlineargs.h>
#include <tdelocale.h>
#include <stdlib.h>
@ -44,10 +44,10 @@ int main(int argc, char **argv)
TDECmdLineArgs::init( argc, argv, &aboutData );
aboutData.addAuthor( "Preston Brown", 0, "pbrown@kde.org");
if (!KUniqueApplication::start())
if (!TDEUniqueApplication::start())
exit(0);
KUniqueApplication app;
TDEUniqueApplication app;
SecPolicyWin *spWin = new SecPolicyWin();
app.setMainWidget(spWin);

Loading…
Cancel
Save