summaryrefslogtreecommitdiffstats
path: root/src/common
diff options
context:
space:
mode:
authorMichele Calgaro <[email protected]>2023-12-07 13:47:28 +0900
committerMichele Calgaro <[email protected]>2023-12-07 13:47:28 +0900
commita8207be921513da0ccccf41e36e056736c2b8457 (patch)
tree8e4dd1c96e3c7d416590bca28038c6557ab2ef88 /src/common
parentcda5b603bcae56e1e6d49ebbcefa6dbe89b8190c (diff)
downloadpiklab-a8207be921513da0ccccf41e36e056736c2b8457.tar.gz
piklab-a8207be921513da0ccccf41e36e056736c2b8457.zip
Replaced various '#define' with actual strings - part 6
Signed-off-by: Michele Calgaro <[email protected]>
Diffstat (limited to 'src/common')
-rw-r--r--src/common/gui/hexword_gui.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/gui/hexword_gui.cpp b/src/common/gui/hexword_gui.cpp
index 9a2a8ea..01a5f8d 100644
--- a/src/common/gui/hexword_gui.cpp
+++ b/src/common/gui/hexword_gui.cpp
@@ -32,7 +32,7 @@ GenericHexWordEditor::GenericHexWordEditor(uint nbChars, bool hasBlankValue, TQW
: KLineEdit(parent, "hex_word_editor"), _nbChars(nbChars), _hasBlankValue(hasBlankValue)
{
setFocusPolicy(TQWidget::ClickFocus);
- setValidator(new HexValueValidator(nbChars, TQT_TQOBJECT(this)));
+ setValidator(new HexValueValidator(nbChars, this));
connect(this, TQT_SIGNAL(textChanged(const TQString &)), TQT_SLOT(slotTextChanged()));
setFrame(false);
}