diff options
author | Timothy Pearson <[email protected]> | 2013-01-19 18:46:27 -0600 |
---|---|---|
committer | Timothy Pearson <[email protected]> | 2013-01-19 18:46:27 -0600 |
commit | 31844f5e7358fff86f7892f901ef371966cd3777 (patch) | |
tree | 793b85c001a46aeb9b306d0e65ec2a98a86a29a7 /kmymoney2/main.cpp | |
parent | cf7c58eb9bbb62e74a06ce92338f78ee19d01a23 (diff) | |
download | kmymoney-31844f5e7358fff86f7892f901ef371966cd3777.tar.gz kmymoney-31844f5e7358fff86f7892f901ef371966cd3777.zip |
Rename KCmdLineArgs to TDECmdLineArgs to avoid conflicts with KDE4
Diffstat (limited to 'kmymoney2/main.cpp')
-rw-r--r-- | kmymoney2/main.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/kmymoney2/main.cpp b/kmymoney2/main.cpp index 90f02d0..26a89a2 100644 --- a/kmymoney2/main.cpp +++ b/kmymoney2/main.cpp @@ -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"), "[email protected]"); aboutData.addCredit("Wolfgang Rohdewald", I18N_NOOP("Patches"), "[email protected]"); - 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())); |