summaryrefslogtreecommitdiffstats
path: root/libk3b/tools
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
commit85723d544dd6aad9b2d0974dfe91ece438f03dfb (patch)
tree3baf4e3989ae66eef01b9cccc55501a1d0cfe5eb /libk3b/tools
parenta9a875756e14547b1d362ff6062b735b9f139d32 (diff)
downloadk3b-85723d544dd6aad9b2d0974dfe91ece438f03dfb.tar.gz
k3b-85723d544dd6aad9b2d0974dfe91ece438f03dfb.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/k3b@1240522 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'libk3b/tools')
-rw-r--r--libk3b/tools/k3blistview.cpp8
-rw-r--r--libk3b/tools/k3blistview.h2
-rw-r--r--libk3b/tools/k3btitlelabel.h2
3 files changed, 6 insertions, 6 deletions
diff --git a/libk3b/tools/k3blistview.cpp b/libk3b/tools/k3blistview.cpp
index 72ccd73..f88fd45 100644
--- a/libk3b/tools/k3blistview.cpp
+++ b/libk3b/tools/k3blistview.cpp
@@ -802,7 +802,7 @@ void K3bListView::setCurrentItem( TQListViewItem* i )
return;
// I cannot remember why I did this here exactly. However, it resets the
- // m_lastClickedItem and thus tqinvalidates the editing.
+ // m_lastClickedItem and thus invalidates the editing.
// doRename();
// hideEditor();
// m_currentEditItem = 0;
@@ -1143,7 +1143,7 @@ bool K3bListView::eventFilter( TQObject* o, TQEvent* e )
TQT_BASE_OBJECT(o) == TQT_BASE_OBJECT(d->spinBoxLineEdit) ||
TQT_BASE_OBJECT(o) == TQT_BASE_OBJECT(m_editorComboBox) ) {
// make sure we did not lose the focus to one of the edit widgets' tqchildren
- if( !tqApp->tqfocusWidget() || TQT_BASE_OBJECT(tqApp->tqfocusWidget()->tqparentWidget()) != TQT_BASE_OBJECT(o) ) {
+ if( !tqApp->tqfocusWidget() || TQT_BASE_OBJECT(tqApp->tqfocusWidget()->parentWidget()) != TQT_BASE_OBJECT(o) ) {
doRename();
hideEditor();
}
@@ -1206,14 +1206,14 @@ void K3bListView::viewportResizeEvent( TQResizeEvent* e )
}
-TQListViewItem* K3bListView::tqparentItem( TQListViewItem* item )
+TQListViewItem* K3bListView::parentItem( TQListViewItem* item )
{
if( !item )
return 0;
if( item->tqparent() )
return item->tqparent();
else
- return K3bListView::tqparentItem( item->itemAbove() );
+ return K3bListView::parentItem( item->itemAbove() );
}
diff --git a/libk3b/tools/k3blistview.h b/libk3b/tools/k3blistview.h
index 9f470ed..03daf00 100644
--- a/libk3b/tools/k3blistview.h
+++ b/libk3b/tools/k3blistview.h
@@ -190,7 +190,7 @@ class LIBK3B_EXPORT K3bListView : public KListView
* Searches for the first item above @p i which is one level higher.
* For 1st level items this will always be the listview's root item.
*/
- static TQListViewItem* tqparentItem( TQListViewItem* i );
+ static TQListViewItem* parentItem( TQListViewItem* i );
signals:
void editorButtonClicked( K3bListViewItem*, int );
diff --git a/libk3b/tools/k3btitlelabel.h b/libk3b/tools/k3btitlelabel.h
index d725592..3547a5c 100644
--- a/libk3b/tools/k3btitlelabel.h
+++ b/libk3b/tools/k3btitlelabel.h
@@ -45,7 +45,7 @@ class LIBK3B_EXPORT K3bTitleLabel : public TQFrame
void setSubTitle( const TQString& subTitle );
/**
- * The title label only supports tqalignments left, hcenter, and right
+ * The title label only supports alignments left, hcenter, and right
*
* Default tqalignment is left.
*/