diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2012-03-01 13:36:28 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2012-03-01 13:36:28 -0600 |
commit | 3c87ec12c23bf62d3f60a7dd64020af8e0b997ce (patch) | |
tree | af5b4b5472d6e9ca5f87b12ceafda358b79d92c6 /kregexpeditor/repeatwidget.cpp | |
parent | e31dd7c37ff5af25163426915faddfd43327031f (diff) | |
download | tdeutils-3c87ec12c23bf62d3f60a7dd64020af8e0b997ce.tar.gz tdeutils-3c87ec12c23bf62d3f60a7dd64020af8e0b997ce.zip |
Rename additional global TQt functions
Diffstat (limited to 'kregexpeditor/repeatwidget.cpp')
-rw-r--r-- | kregexpeditor/repeatwidget.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/kregexpeditor/repeatwidget.cpp b/kregexpeditor/repeatwidget.cpp index 9536679..e934122 100644 --- a/kregexpeditor/repeatwidget.cpp +++ b/kregexpeditor/repeatwidget.cpp @@ -273,7 +273,7 @@ TQString RepeatRangeWindow::text() case MINMAX: return i18n("Repeated From %1 to %2 Times") .arg( _rangeFrom->value() ).arg( _rangeTo->value() ); } - qFatal("Fall through!"); + tqFatal("Fall through!"); return TQString::fromLocal8Bit(""); } @@ -286,7 +286,7 @@ int RepeatRangeWindow::min() case EXACTLY: return _exactlyTimes->value(); case MINMAX: return _rangeFrom->value(); } - qFatal("Fall through!"); + tqFatal("Fall through!"); return -1; } @@ -299,7 +299,7 @@ int RepeatRangeWindow::max() case EXACTLY: return _exactlyTimes->value(); case MINMAX: return _rangeTo->value(); } - qFatal("Fall through!"); + tqFatal("Fall through!"); return -1; } |