summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-07-09 02:23:29 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-07-09 02:23:29 +0000
commitd4c555df8d5a8ef3b746d33931961c0e91a96cd0 (patch)
tree1886a08474d7504681a52408cd9577dbc20245e1
parent8f1624dd9a394be19ccf9d63e4de0a0558831ca3 (diff)
downloadkpicosim-d4c555df.tar.gz
kpicosim-d4c555df.zip
Remove the tq in front of these incorrectly TQt4-converted methods/data members:
tqrepaint[...] tqinvalidate[...] tqparent[...] tqmask[...] tqlayout[...] tqalignment[...] git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/kpicosim@1240522 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
-rwxr-xr-xsrc/kprocessorview.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/kprocessorview.cpp b/src/kprocessorview.cpp
index 717bfa2..81b90f1 100755
--- a/src/kprocessorview.cpp
+++ b/src/kprocessorview.cpp
@@ -125,7 +125,7 @@ void KProcessorView::slotItemRenamed( TQListViewItem * item )
value = item->text(1).toInt( &ok, base ) ;
if ( !ok || value < 0 || value > 255 ) {
- TQMessageBox::warning( tqparentWidget(), "Modify register", "Value should be between 0-255" ) ;
+ TQMessageBox::warning( parentWidget(), "Modify register", "Value should be between 0-255" ) ;
view->rename( item, 1 ) ;
} else {
emit processorRegsChanged() ;
@@ -137,7 +137,7 @@ void KProcessorView::slotItemRenamed( TQListViewItem * item )
if ( zeroFlag == item || carryFlag == item || ieFlag == item ) {
value = item->text(1).toInt( &ok ) ;
if ( !ok || value < 0 || value > 1 ) {
- TQMessageBox::warning( tqparentWidget(), "Modify flag", "Value should be between 0-1" ) ;
+ TQMessageBox::warning( parentWidget(), "Modify flag", "Value should be between 0-1" ) ;
} else
emit processorFlagsChanged() ;
}