diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2012-03-08 09:11:21 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2012-03-08 09:11:21 -0600 |
commit | 108d0492c22095379669934c3ad6184939a8d4d4 (patch) | |
tree | e3752c3ef4ebbe05479ecd5398447a73102734c1 /kdejava/koala/org | |
parent | 3b7651a94758312b42fa63076c3299b6d2b9d0c9 (diff) | |
download | tdebindings-108d0492c22095379669934c3ad6184939a8d4d4.tar.gz tdebindings-108d0492c22095379669934c3ad6184939a8d4d4.zip |
Update for tqt3
Diffstat (limited to 'kdejava/koala/org')
-rw-r--r-- | kdejava/koala/org/kde/koala/KRegExpEditorInterface.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/kdejava/koala/org/kde/koala/KRegExpEditorInterface.java b/kdejava/koala/org/kde/koala/KRegExpEditorInterface.java index 981fd713..6a4d5409 100644 --- a/kdejava/koala/org/kde/koala/KRegExpEditorInterface.java +++ b/kdejava/koala/org/kde/koala/KRegExpEditorInterface.java @@ -20,7 +20,7 @@ import org.kde.qt.QtSupport; TQDialog editorDialog = KParts.ComponentFactory.createInstanceFromQuery<TQDialog>( "KRegExpEditor/KRegExpEditor" ); if ( editorDialog ) { // tdeutils was installed, so the dialog was found fetch the editor interface - KRegExpEditorInterface editor = (KRegExpEditorInterface)( editorDialog.qt_cast( "KRegExpEditorInterface" ) ); + KRegExpEditorInterface editor = (KRegExpEditorInterface)( editorDialog.tqt_cast( "KRegExpEditorInterface" ) ); Q_ASSERT( editor ); // This should not fail! // now use the editor. editor.setRegExp("^kde$"); @@ -43,7 +43,7 @@ import org.kde.qt.QtSupport; "KRegExpEditor/KRegExpEditor", null, parent ); if ( editorWidget ) { // tdeutils was installed, so the widget was found fetch the editor interface - KRegExpEditorInterface editor = (KRegExpEditorInterface)( editorWidget.qt_cast( "KRegExpEditorInterface" ) ); + KRegExpEditorInterface editor = (KRegExpEditorInterface)( editorWidget.tqt_cast( "KRegExpEditorInterface" ) ); Q_ASSERT( editor ); // This should not fail! // now use the editor. editor.setRegExp("^kde$"); |