|
|
|
@ -166,7 +166,7 @@ void createTQApp()
|
|
|
|
|
{
|
|
|
|
|
int argc = 1;
|
|
|
|
|
char** argv;
|
|
|
|
|
// Supply it with fake data to keep KApplication happy
|
|
|
|
|
// Supply it with fake data to keep TDEApplication happy
|
|
|
|
|
argv = (char**) malloc(sizeof(char*));
|
|
|
|
|
argv[0] = (char*) malloc(sizeof(char) * 19);
|
|
|
|
|
strncpy(argv[0], "gtk-qt-application", 19);
|
|
|
|
@ -177,7 +177,7 @@ void createTQApp()
|
|
|
|
|
"message goes here", 0 /* TODO: Website */, "kb9vqf@pearsoncomputing.net");
|
|
|
|
|
TDECmdLineArgs::init(argc, argv, &aboutData);
|
|
|
|
|
|
|
|
|
|
KApplication::disableAutoDcopRegistration();
|
|
|
|
|
TDEApplication::disableAutoDcopRegistration();
|
|
|
|
|
|
|
|
|
|
TQString cmdLine;
|
|
|
|
|
|
|
|
|
@ -374,7 +374,7 @@ void createTQApp()
|
|
|
|
|
|
|
|
|
|
if (!tqApp)
|
|
|
|
|
{
|
|
|
|
|
new KApplication(gdk_x11_get_default_xdisplay(), true, 0, 0, true);
|
|
|
|
|
new TDEApplication(gdk_x11_get_default_xdisplay(), true, 0, 0, true);
|
|
|
|
|
tqAppOwner = true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|