summaryrefslogtreecommitdiffstats
path: root/kdejava/koala/org/kde/koala/TDECmdLineArgs.java
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2013-01-22 20:16:43 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2013-01-22 20:16:43 -0600
commit8f7ac92d27834427c1fa2a4a350d70d05529bbf4 (patch)
treefc53a45a5d9693bfe8a156579b921e960351e31c /kdejava/koala/org/kde/koala/TDECmdLineArgs.java
parent427847240b11c1733dd9c259c613d68a6405fe68 (diff)
downloadtdebindings-8f7ac92d27834427c1fa2a4a350d70d05529bbf4.tar.gz
tdebindings-8f7ac92d27834427c1fa2a4a350d70d05529bbf4.zip
Rename KInstance and KAboutData to avoid conflicts with KDE4
Diffstat (limited to 'kdejava/koala/org/kde/koala/TDECmdLineArgs.java')
-rw-r--r--kdejava/koala/org/kde/koala/TDECmdLineArgs.java16
1 files changed, 8 insertions, 8 deletions
diff --git a/kdejava/koala/org/kde/koala/TDECmdLineArgs.java b/kdejava/koala/org/kde/koala/TDECmdLineArgs.java
index 67901ba6..423df7a3 100644
--- a/kdejava/koala/org/kde/koala/TDECmdLineArgs.java
+++ b/kdejava/koala/org/kde/koala/TDECmdLineArgs.java
@@ -257,29 +257,29 @@ public class TDECmdLineArgs implements QtSupport {
/**
Initialize class.
This function should be called as the very first thing in
- your application. It uses KAboutData to replace some of the
+ your application. It uses TDEAboutData to replace some of the
arguments that would otherwise be required.
@param _argv As passed to <code>main</code>(...).
- @param about A KAboutData object describing your program.
+ @param about A TDEAboutData object describing your program.
@param noKApp Set this true to not add commandline options for
TQApplication / TDEApplication
@short Initialize class.
*/
- public static native void init(String[] _argv, KAboutData about, boolean noKApp);
- public static native void init(String[] _argv, KAboutData about);
+ public static native void init(String[] _argv, TDEAboutData about, boolean noKApp);
+ public static native void init(String[] _argv, TDEAboutData about);
/**
Initialize Class
This function should be called as the very first thing in your
application. This method will rarely be used, since it doesn't
provide any argument parsing. It does provide access to the
- KAboutData information.
+ TDEAboutData information.
This method is exactly the same as calling
- init(0,0, const KAboutData about, true).
+ init(0,0, const TDEAboutData about, true).
@param about the about data.
- \see KAboutData
+ \see TDEAboutData
@short Initialize Class
*/
- public static native void init(KAboutData about);
+ public static native void init(TDEAboutData about);
/**
Add options to your application.
You must make sure that all possible options have been added before