diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-01-21 18:50:21 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-01-21 18:50:21 -0600 |
commit | 427847240b11c1733dd9c259c613d68a6405fe68 (patch) | |
tree | 71a03608b683f39cbb48ea79f9c40dc7a320019e /kdejava/koala/test/kbase | |
parent | 3b8c3eec420595c4532e4c4f2282b6bc2802d5a9 (diff) | |
download | tdebindings-427847240b11c1733dd9c259c613d68a6405fe68.tar.gz tdebindings-427847240b11c1733dd9c259c613d68a6405fe68.zip |
Rename KCmdLineArgs to TDECmdLineArgs to avoid conflicts with KDE4
Diffstat (limited to 'kdejava/koala/test/kbase')
-rw-r--r-- | kdejava/koala/test/kbase/KBase.java | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/kdejava/koala/test/kbase/KBase.java b/kdejava/koala/test/kbase/KBase.java index 6401dd80..ab163a40 100644 --- a/kdejava/koala/test/kbase/KBase.java +++ b/kdejava/koala/test/kbase/KBase.java @@ -558,8 +558,8 @@ public static void main(String[] cmdLineArgs) VERSION, description, KAboutData.License_GPL, "(c) 2001, Richard Dale"); aboutData.addAuthor("Richard Dale",null, "Lost_Highway@tipitina.demon.co.uk"); - KCmdLineArgs.init( cmdLineArgs, aboutData ); - KCmdLineArgs.addCmdLineOptions( options ); // Add our own options. + TDECmdLineArgs.init( cmdLineArgs, aboutData ); + TDECmdLineArgs.addCmdLineOptions( options ); // Add our own options. TDEApplication app = new TDEApplication(); @@ -571,7 +571,7 @@ public static void main(String[] cmdLineArgs) { KBase kbase = new KBase(); kbase.show(); - KCmdLineArgs args = KCmdLineArgs.parsedArgs(); + TDECmdLineArgs args = TDECmdLineArgs.parsedArgs(); if (args.count() > 0) { |