summaryrefslogtreecommitdiffstats
path: root/src/entryeditdialog.cpp
diff options
context:
space:
mode:
authorMichele Calgaro <[email protected]>2023-12-14 21:19:13 +0900
committerMichele Calgaro <[email protected]>2023-12-15 00:30:59 +0900
commit3d581777cdf9c0ff8dc7e757a2cd576f69e96b51 (patch)
treed7ec6ca39a46ae475336025d1c11e27fe23a47e8 /src/entryeditdialog.cpp
parent10996a19ed32a39c2177936026b798cae63e01bd (diff)
downloadtellico-3d581777cdf9c0ff8dc7e757a2cd576f69e96b51.tar.gz
tellico-3d581777cdf9c0ff8dc7e757a2cd576f69e96b51.zip
Remove various '#define' strings - part 6
Signed-off-by: Michele Calgaro <[email protected]>
Diffstat (limited to 'src/entryeditdialog.cpp')
-rw-r--r--src/entryeditdialog.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/entryeditdialog.cpp b/src/entryeditdialog.cpp
index feb57a7..3cb94d0 100644
--- a/src/entryeditdialog.cpp
+++ b/src/entryeditdialog.cpp
@@ -708,10 +708,10 @@ void EntryEditDialog::modifyField(Data::CollPtr coll_, Data::FieldPtr oldField_,
TQObjectList* childList = widget->parentWidget()->queryList("Tellico::GUI::FieldWidget", 0, false, false);
TQObjectListIt it(*childList);
for(it.toFirst(); it.current(); ++it) {
- maxWidth = TQMAX(maxWidth, static_cast<GUI::FieldWidget*>(TQT_TQWIDGET(it.current()))->labelWidth());
+ maxWidth = TQMAX(maxWidth, static_cast<GUI::FieldWidget*>(it.current())->labelWidth());
}
for(it.toFirst(); it.current(); ++it) {
- static_cast<GUI::FieldWidget*>(TQT_TQWIDGET(it.current()))->setLabelWidth(maxWidth);
+ static_cast<GUI::FieldWidget*>(it.current())->setLabelWidth(maxWidth);
}
delete childList;
}