From 26bcb362b66b78984c0c7567d00c12f3425d6468 Mon Sep 17 00:00:00 2001 From: Michele Calgaro Date: Thu, 7 Dec 2023 13:47:28 +0900 Subject: Replaced various '#define' with actual strings - part 6 Signed-off-by: Michele Calgaro (cherry picked from commit a8207be921513da0ccccf41e36e056736c2b8457) --- src/common/gui/hexword_gui.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/common/gui/hexword_gui.cpp') 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); } -- cgit v1.2.3