diff options
author | Michele Calgaro <[email protected]> | 2023-12-07 13:47:28 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2023-12-07 13:47:28 +0900 |
commit | a8207be921513da0ccccf41e36e056736c2b8457 (patch) | |
tree | 8e4dd1c96e3c7d416590bca28038c6557ab2ef88 /src/common | |
parent | cda5b603bcae56e1e6d49ebbcefa6dbe89b8190c (diff) | |
download | piklab-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.cpp | 2 |
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); } |