diff options
Diffstat (limited to 'kmymoney2/dialogs/kmymoneysplittable.cpp')
-rw-r--r-- | kmymoney2/dialogs/kmymoneysplittable.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/kmymoney2/dialogs/kmymoneysplittable.cpp b/kmymoney2/dialogs/kmymoneysplittable.cpp index 5a93427..3d3b0c1 100644 --- a/kmymoney2/dialogs/kmymoneysplittable.cpp +++ b/kmymoney2/dialogs/kmymoneysplittable.cpp @@ -397,7 +397,7 @@ void kMyMoneySplitTable::slotSetFocus(int realrow, int /* col */, int button, co // make sure the row will be on the screen ensureCellVisible(row, 0); - if(button == Qt::LeftButton) { // left mouse button + if(button == TQt::LeftButton) { // left mouse button if(isEditMode()) { // in edit mode? if(KMyMoneyGlobalSettings::focusChangeIsEnter()) slotEndEdit(); @@ -409,7 +409,7 @@ void kMyMoneySplitTable::slotSetFocus(int realrow, int /* col */, int button, co setCurrentCell(row, 0); slotUpdateData(m_transaction); } - } else if(button == Qt::RightButton) { + } else if(button == TQt::RightButton) { // context menu is only available when cursor is on // an existing transaction or the first line after this area if(row == realrow) { |