summaryrefslogtreecommitdiffstats
path: root/kregexpeditor/widgetfactory.cpp
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2012-03-01 13:36:28 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2012-03-01 13:36:28 -0600
commit3c87ec12c23bf62d3f60a7dd64020af8e0b997ce (patch)
treeaf5b4b5472d6e9ca5f87b12ceafda358b79d92c6 /kregexpeditor/widgetfactory.cpp
parente31dd7c37ff5af25163426915faddfd43327031f (diff)
downloadtdeutils-3c87ec12c23bf62d3f60a7dd64020af8e0b997ce.tar.gz
tdeutils-3c87ec12c23bf62d3f60a7dd64020af8e0b997ce.zip
Rename additional global TQt functions
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;
}