diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-11-08 22:36:09 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-11-08 22:36:09 +0900 |
commit | 8c7f4511023f7f56d711de29d70e7cd88ae8bb81 (patch) | |
tree | 3d3353bd878e54f52cf07a474542111e24230544 | |
parent | 8f16b27c432cbed84478531296cbac050fac1a77 (diff) | |
download | piklab-8c7f4511023f7f56d711de29d70e7cd88ae8bb81.tar.gz piklab-8c7f4511023f7f56d711de29d70e7cd88ae8bb81.zip |
Rename KUniqueApplication to TDEUniqueApplication
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
-rw-r--r-- | src/common/nokde/nokde_tdecmdlineargs.h | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/src/common/nokde/nokde_tdecmdlineargs.h b/src/common/nokde/nokde_tdecmdlineargs.h index 7a9997f..57112d8 100644 --- a/src/common/nokde/nokde_tdecmdlineargs.h +++ b/src/common/nokde/nokde_tdecmdlineargs.h @@ -80,7 +80,7 @@ struct TDECORE_EXPORT TDECmdLineOptions class TDECmdLineArgsList; class TDEApplication; -class KUniqueApplication; +class TDEUniqueApplication; class TDECmdLineParsedOptions; class TDECmdLineParsedArgs; class TDEAboutData; @@ -108,19 +108,19 @@ class TDECmdLineArgsPrivate; * TDECmdLineArgs::addCmdLineOptions( options ); * * // Add options from other components - * KUniqueApplication::addCmdLineOptions(); + * TDEUniqueApplication::addCmdLineOptions(); * * .... * * // Create application object without passing 'argc' and 'argv' again. - * KUniqueApplication app; + * TDEUniqueApplication app; * * .... * * // Handle our own options/arguments * // A TDEApplication will usually do this in main but this is not * // necessary. - * // A KUniqueApplication might want to handle it in newInstance(). + * // A TDEUniqueApplication might want to handle it in newInstance(). * * TDECmdLineArgs *args = TDECmdLineArgs::parsedArgs(); * @@ -233,7 +233,7 @@ class TDECmdLineArgsPrivate; class TDECORE_EXPORT TDECmdLineArgs { friend class TDEApplication; - friend class KUniqueApplication; + friend class TDEUniqueApplication; friend class TQPtrList<TDECmdLineArgs>; public: // Static functions: @@ -384,7 +384,7 @@ public: * Get the CWD (Current Working Directory) associated with the * current command line arguments. * - * Typically this is needed in KUniqueApplication::newInstance() + * Typically this is needed in TDEUniqueApplication::newInstance() * since the CWD of the process may be different from the CWD * where the user started a second instance. * @return the current working directory @@ -617,7 +617,7 @@ private: static void removeArgs(const char *id); /** - * @internal for KUniqueApplication only: + * @internal for TDEUniqueApplication only: * * Save all but the TQt and KDE arguments to a stream. */ |