summaryrefslogtreecommitdiffstats
path: root/kregexpeditor/widgetfactory.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'kregexpeditor/widgetfactory.cpp')
-rw-r--r--kregexpeditor/widgetfactory.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/kregexpeditor/widgetfactory.cpp b/kregexpeditor/widgetfactory.cpp
index 1ab5d24..43a1008 100644
--- a/kregexpeditor/widgetfactory.cpp
+++ b/kregexpeditor/widgetfactory.cpp
@@ -76,7 +76,7 @@ RegExpWidget* WidgetFactory::createWidget( RegExpEditorWindow* win, TQWidget* pa
case COMPOUND:
widget = new CompoundWidget( win, parent ); break;
default:
- qFatal("It should not be possible to get here!");
+ tqFatal("It should not be possible to get here!");
return 0;
}
@@ -91,7 +91,7 @@ RegExpWidget* WidgetFactory::createWidget( RegExp* regexp, RegExpEditorWindow* e
TQWidget* parent )
{
if ( regexp == 0 ) {
- qFatal("%s:%d Regexp is 0", __FILE__, __LINE__ );
+ tqFatal("%s:%d Regexp is 0", __FILE__, __LINE__ );
}
else if ( TextRegExp* reg = dynamic_cast<TextRegExp*>( regexp ) )
return new TextWidget( reg, editorWindow, parent );
@@ -126,7 +126,7 @@ RegExpWidget* WidgetFactory::createWidget( RegExp* regexp, RegExpEditorWindow* e
else if ( CompoundRegExp* reg = dynamic_cast<CompoundRegExp*>( regexp ) )
return new CompoundWidget( reg, editorWindow, parent );
else {
- qFatal("%s:%d Internal Error: Unknown RegExp type", __FILE__, __LINE__);
+ tqFatal("%s:%d Internal Error: Unknown RegExp type", __FILE__, __LINE__);
}
return 0;
}