|
|
@ -26,6 +26,7 @@
|
|
|
|
#include <tdecmdlineargs.h>
|
|
|
|
#include <tdecmdlineargs.h>
|
|
|
|
#include <tdelocale.h>
|
|
|
|
#include <tdelocale.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
|
|
|
|
#include <tdeaboutdata.h>
|
|
|
|
|
|
|
|
|
|
|
|
#include "secpolicywin.h"
|
|
|
|
#include "secpolicywin.h"
|
|
|
|
|
|
|
|
|
|
|
@ -37,7 +38,11 @@ static const char version[] = "v0.0.1";
|
|
|
|
|
|
|
|
|
|
|
|
int main(int argc, char **argv)
|
|
|
|
int main(int argc, char **argv)
|
|
|
|
{
|
|
|
|
{
|
|
|
|
TDECmdLineArgs::init(argc, argv, "secpolicy", description, version);
|
|
|
|
TDEAboutData aboutData("secpolicy", I18N_NOOP("secpolicy"),
|
|
|
|
|
|
|
|
version, description, TDEAboutData::License_GPL,
|
|
|
|
|
|
|
|
"(c) 1999 by Preston Brown");
|
|
|
|
|
|
|
|
TDECmdLineArgs::init( argc, argv, &aboutData );
|
|
|
|
|
|
|
|
aboutData.addAuthor( "Preston Brown", 0, "pbrown@kde.org");
|
|
|
|
|
|
|
|
|
|
|
|
if (!KUniqueApplication::start())
|
|
|
|
if (!KUniqueApplication::start())
|
|
|
|
exit(0);
|
|
|
|
exit(0);
|
|
|
|