|
|
|
@ -72,7 +72,7 @@ bool timersOn = false;
|
|
|
|
|
|
|
|
|
|
KMyMoney2App* kmymoney2;
|
|
|
|
|
|
|
|
|
|
static KCmdLineArgs* args = 0;
|
|
|
|
|
static TDECmdLineArgs* args = 0;
|
|
|
|
|
|
|
|
|
|
static void _cleanup(void)
|
|
|
|
|
{
|
|
|
|
@ -116,8 +116,8 @@ int main(int argc, char *argv[])
|
|
|
|
|
aboutData.addCredit("Laurent Montel", I18N_NOOP("Patches"), "montel@kde.org");
|
|
|
|
|
aboutData.addCredit("Wolfgang Rohdewald", I18N_NOOP("Patches"), "woro@users.sourceforge.net");
|
|
|
|
|
|
|
|
|
|
KCmdLineArgs::init( argc, argv, &aboutData );
|
|
|
|
|
KCmdLineArgs::addCmdLineOptions( options ); // Add our own options.
|
|
|
|
|
TDECmdLineArgs::init( argc, argv, &aboutData );
|
|
|
|
|
TDECmdLineArgs::addCmdLineOptions( options ); // Add our own options.
|
|
|
|
|
|
|
|
|
|
// create the singletons before we start memory checking
|
|
|
|
|
// to avoid false error reports
|
|
|
|
@ -142,7 +142,7 @@ int main(int argc, char *argv[])
|
|
|
|
|
KStartupLogo* splash = new KStartupLogo();
|
|
|
|
|
a->processEvents();
|
|
|
|
|
|
|
|
|
|
args = KCmdLineArgs::parsedArgs();
|
|
|
|
|
args = TDECmdLineArgs::parsedArgs();
|
|
|
|
|
|
|
|
|
|
// setup the MyMoneyMoney locale settings according to the KDE settings
|
|
|
|
|
MyMoneyMoney::setThousandSeparator(*(KGlobal::locale()->monetaryThousandsSeparator().latin1()));
|
|
|
|
|