diff options
author | Michele Calgaro <[email protected]> | 2023-12-03 00:36:54 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2023-12-03 01:59:43 +0900 |
commit | 8746e143f41db6c9777491c9864ef0601a0c5d46 (patch) | |
tree | ab6d976e5b50c66e29e238a8bcdbe6ff2b12fc68 | |
parent | 70b5fac7f42bb3796b3a525c28ef34e480f0f133 (diff) | |
download | kima-8746e143f41db6c9777491c9864ef0601a0c5d46.tar.gz kima-8746e143f41db6c9777491c9864ef0601a0c5d46.zip |
Replaced various '#define' with actual strings - part 5
Signed-off-by: Michele Calgaro <[email protected]>
-rw-r--r-- | src/flowlayout.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/flowlayout.cpp b/src/flowlayout.cpp index 9376474..9a87379 100644 --- a/src/flowlayout.cpp +++ b/src/flowlayout.cpp @@ -102,7 +102,7 @@ void FlowLayout::addItem(TQLayoutItem* item){ // we are indirectly called from addSource. this // is a hint for addSource, to let it know which item // was added. - mLastItem = TQT_TQLAYOUTITEM(item); + mLastItem = item; } void FlowLayout::addSource(Source* src){ |