summaryrefslogtreecommitdiffstats
path: root/kmymoney2/widgets/register.cpp
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2023-11-24 10:47:39 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2023-11-24 22:32:06 +0900
commit2889777f69ae16aff91ebe836bcdf3b8ad43378c (patch)
tree2d499c10560978ac9211a8dcdc0ab0f07c8360cb /kmymoney2/widgets/register.cpp
parent483ebca4c2669f6b53812efbe38a698241f95785 (diff)
downloadkmymoney-2889777f69ae16aff91ebe836bcdf3b8ad43378c.tar.gz
kmymoney-2889777f69ae16aff91ebe836bcdf3b8ad43378c.zip
Replaced various '#define' with actual strings - part 3
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it> (cherry picked from commit 9bb2179ec0b55df8162909ad36a2781f73e5e734)
Diffstat (limited to 'kmymoney2/widgets/register.cpp')
-rw-r--r--kmymoney2/widgets/register.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/kmymoney2/widgets/register.cpp b/kmymoney2/widgets/register.cpp
index 7ea8796..40ec31b 100644
--- a/kmymoney2/widgets/register.cpp
+++ b/kmymoney2/widgets/register.cpp
@@ -1889,7 +1889,7 @@ TQWidget* Register::cellWidget(int row, int col) const
return 0;
TQWidget* w = 0;
- TQPair<int, int> idx = tqMakePair(row, col);
+ TQPair<int, int> idx = qMakePair(row, col);
TQMap<TQPair<int, int>, TQWidget*>::const_iterator it_w;
it_w = m_cellWidgets.find(idx);
@@ -1905,7 +1905,7 @@ void Register::insertWidget(int row, int col, TQWidget* w)
return;
}
- TQPair<int, int> idx = tqMakePair(row, col);
+ TQPair<int, int> idx = qMakePair(row, col);
m_cellWidgets[idx] = w;
}
@@ -1916,7 +1916,7 @@ void Register::clearCellWidget(int row, int col)
return;
}
- TQPair<int, int> idx = tqMakePair(row, col);
+ TQPair<int, int> idx = qMakePair(row, col);
TQMap<TQPair<int, int>, TQWidget*>::iterator it_w;
it_w = m_cellWidgets.find(idx);