From 108d0492c22095379669934c3ad6184939a8d4d4 Mon Sep 17 00:00:00 2001 From: Timothy Pearson Date: Thu, 8 Mar 2012 09:11:21 -0600 Subject: Update for tqt3 --- kdejava/koala/org/kde/koala/KRegExpEditorInterface.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'kdejava/koala/org/kde') 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( "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$"); -- cgit v1.2.1