summaryrefslogtreecommitdiffstats
path: root/kjsembed
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2013-01-19 18:46:43 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2013-01-19 18:46:43 -0600
commit8a69eba2f0eddce05cf86e0df8aec6e9f473d485 (patch)
treea889ac177bfba440878975db41e0a240daee8075 /kjsembed
parent1dbcf2f985c1f3d9319f4c46a0da9951551f82c9 (diff)
downloadtdebindings-8a69eba2f0eddce05cf86e0df8aec6e9f473d485.tar.gz
tdebindings-8a69eba2f0eddce05cf86e0df8aec6e9f473d485.zip
Rename KCmdLineArgs to TDECmdLineArgs to avoid conflicts with KDE4
Diffstat (limited to 'kjsembed')
-rw-r--r--kjsembed/cpptests/jsaccess/jsaccess.cpp2
-rw-r--r--kjsembed/docs/embedding/simple-embed/main.cpp2
-rw-r--r--kjsembed/kjscmd.cpp6
-rw-r--r--kjsembed/testkjsembed.cpp2
-rw-r--r--kjsembed/tests/testkjsembed.cpp2
5 files changed, 7 insertions, 7 deletions
diff --git a/kjsembed/cpptests/jsaccess/jsaccess.cpp b/kjsembed/cpptests/jsaccess/jsaccess.cpp
index 6d22b412..d211b019 100644
--- a/kjsembed/cpptests/jsaccess/jsaccess.cpp
+++ b/kjsembed/cpptests/jsaccess/jsaccess.cpp
@@ -38,7 +38,7 @@ int main( int argc, char **argv )
KAboutData about( "test-kjsembed", I18N_NOOP("KJS Embed Test For C++ access of variables and functions."), "0.1",
I18N_NOOP("Test"),
KAboutData::License_LGPL, I18N_NOOP("(c) 2004 Ian Reinhart Geiser") );
- KCmdLineArgs::init( argc, argv, &about );
+ TDECmdLineArgs::init( argc, argv, &about );
KApplication app;
// Setup Interpreter
diff --git a/kjsembed/docs/embedding/simple-embed/main.cpp b/kjsembed/docs/embedding/simple-embed/main.cpp
index 719ca29f..8a3f75fe 100644
--- a/kjsembed/docs/embedding/simple-embed/main.cpp
+++ b/kjsembed/docs/embedding/simple-embed/main.cpp
@@ -34,7 +34,7 @@ int main(int argc, char **argv)
KAboutData about("embedjs", I18N_NOOP("EmbedJS"), version, description,
KAboutData::License_LGPL, "(C) 2004 Ian Reinhart Geiser", 0, 0, "geiseri@kde.org");
about.addAuthor( "Ian Reinhart Geiser", 0, "geiseri@kde.org" );
- KCmdLineArgs::init(argc, argv, &about);
+ TDECmdLineArgs::init(argc, argv, &about);
KApplication app;
EmbedViewImp *view = new EmbedViewImp;
diff --git a/kjsembed/kjscmd.cpp b/kjsembed/kjscmd.cpp
index 4b6604cf..220a1b50 100644
--- a/kjsembed/kjscmd.cpp
+++ b/kjsembed/kjscmd.cpp
@@ -88,9 +88,9 @@ int main( int argc, char **argv )
about.addAuthor( "Richard Moore", 0, "rich@kde.org" );
about.addAuthor( "Ian Reinhart Geiser", 0, "geiser@kde.org" );
- KCmdLineArgs::init( argc, argv, &about );
- KCmdLineArgs::addCmdLineOptions( options ); // Add our own options.
- KCmdLineArgs *args = KCmdLineArgs::parsedArgs();
+ TDECmdLineArgs::init( argc, argv, &about );
+ TDECmdLineArgs::addCmdLineOptions( options ); // Add our own options.
+ TDECmdLineArgs *args = TDECmdLineArgs::parsedArgs();
// Setup KApplication
KApplication *app;
diff --git a/kjsembed/testkjsembed.cpp b/kjsembed/testkjsembed.cpp
index 47065ab7..2b72a8cd 100644
--- a/kjsembed/testkjsembed.cpp
+++ b/kjsembed/testkjsembed.cpp
@@ -33,7 +33,7 @@ int main( int argc, char **argv )
KAboutData about( "test-kjsembed", I18N_NOOP("KJS Embed Test"), "0.1",
I18N_NOOP("Test"),
KAboutData::License_LGPL, I18N_NOOP("(c) 2001-2003 Richard Moore") );
- KCmdLineArgs::init( argc, argv, &about );
+ TDECmdLineArgs::init( argc, argv, &about );
KApplication app;
// Setup Interpreter
diff --git a/kjsembed/tests/testkjsembed.cpp b/kjsembed/tests/testkjsembed.cpp
index f97d6b1c..53c5f5da 100644
--- a/kjsembed/tests/testkjsembed.cpp
+++ b/kjsembed/tests/testkjsembed.cpp
@@ -36,7 +36,7 @@ int main( int argc, char **argv )
KAboutData about( "test-kjsembed", I18N_NOOP("KJS Embed Test"), "0.1",
I18N_NOOP("Test"),
KAboutData::License_LGPL, I18N_NOOP("(c) 2001-2002 Richard Moore") );
- KCmdLineArgs::init( argc, argv, &about );
+ TDECmdLineArgs::init( argc, argv, &about );
KApplication app;
// Setup Interpreter