diff options
-rw-r--r-- | doc/en/PerlQt.pod | 2 | ||||
-rw-r--r-- | doc/en/index.html | 2 | ||||
-rw-r--r-- | kalyptus/kalyptusCxxToJNI.pm | 4 | ||||
-rw-r--r-- | kalyptus/kalyptusCxxToJava.pm | 2 | ||||
-rw-r--r-- | kalyptus/kalyptusCxxToKimono.pm | 2 |
5 files changed, 6 insertions, 6 deletions
diff --git a/doc/en/PerlQt.pod b/doc/en/PerlQt.pod index 62ac845..54eaa6c 100644 --- a/doc/en/PerlQt.pod +++ b/doc/en/PerlQt.pod @@ -823,7 +823,7 @@ PerlTQt as The only notable exceptions are : - qApp() will map to TQt::app() + tqApp() will map to TQt::app() qVersion() will map to TQt::version() # not really needed anymore: we have qVersion(). See Global Functions below. =item * diff --git a/doc/en/index.html b/doc/en/index.html index c9fe274..1583078 100644 --- a/doc/en/index.html +++ b/doc/en/index.html @@ -747,7 +747,7 @@ PerlTQt as TQt::Bar::Foo( arg-1,...,arg-n);</pre> <p>The only notable exceptions are :</p> <pre> - qApp() will map to TQt::app() + tqApp() will map to TQt::app() qVersion() will map to TQt::version() # not really needed anymore: we have qVersion(). See Global Functions below.</pre> <p></p> <li></li> diff --git a/kalyptus/kalyptusCxxToJNI.pm b/kalyptus/kalyptusCxxToJNI.pm index 25c0afa..0a532ac 100644 --- a/kalyptus/kalyptusCxxToJNI.pm +++ b/kalyptus/kalyptusCxxToJNI.pm @@ -504,7 +504,7 @@ EOF public static native TQCursor forbiddenCursor(); // forbidden cursor (slashed circle) public static native TQCursor whatsThisCursor(); // arrow with a question mark - public static native TQApplication qApp(); + public static native TQApplication tqApp(); public static native void qDebug(String message); public static void qDebug(String pattern, Object[] arguments) { @@ -814,7 +814,7 @@ JNIEXPORT jobject JNICALL Java_org_kde_qt_Qt_qApp(JNIEnv* env, jclass cls) { (void) cls; - return (jobject) QtSupport::objectForQtKey(env, qApp, "org.kde.qt.TQApplication"); + return (jobject) QtSupport::objectForQtKey(env, tqApp, "org.kde.qt.TQApplication"); } JNIEXPORT void JNICALL diff --git a/kalyptus/kalyptusCxxToJava.pm b/kalyptus/kalyptusCxxToJava.pm index fa518cf..7cfc626 100644 --- a/kalyptus/kalyptusCxxToJava.pm +++ b/kalyptus/kalyptusCxxToJava.pm @@ -299,7 +299,7 @@ EOF public static native TQCursor pointingHandCursor(); // pointing hand public static native TQCursor forbiddenCursor(); // forbidden cursor (slashed circle) */ -// public static native TQApplication qApp(); +// public static native TQApplication tqApp(); public static native void qDebug(String message); public static void qDebug(String pattern, Object[] arguments) { diff --git a/kalyptus/kalyptusCxxToKimono.pm b/kalyptus/kalyptusCxxToKimono.pm index 77e0af8..1cb5dbf 100644 --- a/kalyptus/kalyptusCxxToKimono.pm +++ b/kalyptus/kalyptusCxxToKimono.pm @@ -395,7 +395,7 @@ EOF public const int IO_TimeOutError = 7; public const int IO_UnspecifiedError= 8; - public static TQApplication qApp = null; + public static TQApplication tqApp = null; public static string SIGNAL(string signal) { return "2"+ signal; |