summaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2013-01-21 18:57:01 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2013-01-21 18:57:01 -0600
commit5c0390ebaa2be82d8684af5a6bc2b16740f4cc1b (patch)
tree62ea22772d9dfeca3552c15ec9fdb1667be99aba /doc
parent15a642e75c65d90fe4484586f585cdcd4f52ab5d (diff)
downloadtdevelop-5c0390ebaa2be82d8684af5a6bc2b16740f4cc1b.tar.gz
tdevelop-5c0390ebaa2be82d8684af5a6bc2b16740f4cc1b.zip
Rename KCmdLineArgs to TDECmdLineArgs to avoid conflicts with KDE4
Diffstat (limited to 'doc')
-rw-r--r--doc/kde_app_devel/index.docbook6
-rw-r--r--doc/kdearch/index.docbook2
2 files changed, 4 insertions, 4 deletions
diff --git a/doc/kde_app_devel/index.docbook b/doc/kde_app_devel/index.docbook
index 46114f6c..92652bbc 100644
--- a/doc/kde_app_devel/index.docbook
+++ b/doc/kde_app_devel/index.docbook
@@ -859,8 +859,8 @@ by selecting the "Global Functions" folder.
3 KAboutData about("kscribble", I18N_NOOP("KScribble"), version, description,
4 KAboutData::License_GPL, "(C) 2002 Your Name", 0, 0, "you@you.com");
5 about.addAuthor( "Your Name", 0, "you@you.com" );
-6 KCmdLineArgs::init(argc, argv, &amp;about);
-7 KCmdLineArgs::addCmdLineOptions(options);
+6 TDECmdLineArgs::init(argc, argv, &amp;about);
+7 TDECmdLineArgs::addCmdLineOptions(options);
8 TDEApplication app;
9
10 // register ourselves as a dcop client
@@ -872,7 +872,7 @@ by selecting the "Global Functions" folder.
16 else
17 {
18 // no session.. just start up normally
-19 KCmdLineArgs *args = KCmdLineArgs::parsedArgs();
+19 TDECmdLineArgs *args = TDECmdLineArgs::parsedArgs();
20 if (args->count() == 0)
21 {
22 KScribble *widget = new KScribble;
diff --git a/doc/kdearch/index.docbook b/doc/kdearch/index.docbook
index 65963503..353bb436 100644
--- a/doc/kdearch/index.docbook
+++ b/doc/kdearch/index.docbook
@@ -128,7 +128,7 @@ Holds information for the about box.
</para>
</formalpara></listitem>
-<listitem><formalpara><title><ulink url="kdeapi:tdecore/KCmdLineArgs">KCmdLineArgs</ulink></title>
+<listitem><formalpara><title><ulink url="kdeapi:tdecore/TDECmdLineArgs">TDECmdLineArgs</ulink></title>
<para>
Command line argument processing.
</para>