summaryrefslogtreecommitdiffstats
path: root/src/common/gui/hexword_gui.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/common/gui/hexword_gui.cpp')
-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 3030d65..d6ee42f 100644
--- a/src/common/gui/hexword_gui.cpp
+++ b/src/common/gui/hexword_gui.cpp
@@ -31,7 +31,7 @@ TQValidator::State HexValueValidator::validate(TQString &input, int &) const
GenericHexWordEditor::GenericHexWordEditor(uint nbChars, bool hasBlankValue, TQWidget *parent)
: KLineEdit(parent, "hex_word_editor"), _nbChars(nbChars), _hasBlankValue(hasBlankValue)
{
- setFocusPolicy(TQ_ClickFocus);
+ setFocusPolicy(TQWidget::ClickFocus);
setValidator(new HexValueValidator(nbChars, TQT_TQOBJECT(this)));
connect(this, TQT_SIGNAL(textChanged(const TQString &)), TQT_SLOT(slotTextChanged()));
setFrame(false);