diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2025-01-13 23:01:29 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2025-01-15 16:22:14 +0900 |
commit | b71912fbcb90d5504aad9f17530c94169a661fed (patch) | |
tree | e9039e4a956fb8af5ba2878db5320236eb0f93b1 /tdecore/tdecmdlineargs.cpp | |
parent | 8ee06ec529e375693eaefa6fb68dc496d36fd367 (diff) | |
download | tdelibs-rename/kapp-tdeapp.tar.gz tdelibs-rename/kapp-tdeapp.zip |
Rename TDEApplication::kApplication() to TDEApplication::tdeApplication() and kapp to tdeApp.rename/kapp-tdeapp
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'tdecore/tdecmdlineargs.cpp')
-rw-r--r-- | tdecore/tdecmdlineargs.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/tdecore/tdecmdlineargs.cpp b/tdecore/tdecmdlineargs.cpp index 548fee4dc..af28d0057 100644 --- a/tdecore/tdecmdlineargs.cpp +++ b/tdecore/tdecmdlineargs.cpp @@ -125,20 +125,20 @@ bool TDECmdLineArgs::ignoreUnknown = false; void TDECmdLineArgs::init(int _argc, char **_argv, const char *_appname, const char* programName, - const char *_description, const char *_version, bool noKApp) + const char *_description, const char *_version, bool noTDEApp) { init(_argc, _argv, new TDEAboutData(_appname, programName, _version, _description), - noKApp); + noTDEApp); } void TDECmdLineArgs::init(int _argc, char **_argv, const char *_appname, - const char *_description, const char *_version, bool noKApp) + const char *_description, const char *_version, bool noTDEApp) { init(_argc, _argv, new TDEAboutData(_appname, _appname, _version, _description), - noKApp); + noTDEApp); } void @@ -159,7 +159,7 @@ TDECmdLineArgs::init(const TDEAboutData* ab) void -TDECmdLineArgs::init(int _argc, char **_argv, const TDEAboutData *_about, bool noKApp) +TDECmdLineArgs::init(int _argc, char **_argv, const TDEAboutData *_about, bool noTDEApp) { argc = _argc; argv = _argv; @@ -187,7 +187,7 @@ TDECmdLineArgs::init(int _argc, char **_argv, const TDEAboutData *_about, bool n #ifdef TQ_WS_WIN win32_slashify(mCwd, PATH_MAX); #endif - if (!noKApp) + if (!noTDEApp) TDEApplication::addCmdLineOptions(); } |