summaryrefslogtreecommitdiffstats
path: root/src/common/gui
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2023-09-02 15:47:19 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2023-09-03 22:33:33 +0900
commit85ec028d6badd6fda0b194b62e19f8848e6524af (patch)
tree38d2e35ef1224d0055eaae3197078f75c77ead31 /src/common/gui
parente73c7baebb1402b681c42d8e48b58c8a0644af22 (diff)
downloadpiklab-85ec028d.tar.gz
piklab-85ec028d.zip
Replace TQ_*Focus* and TQ_Scale* defines
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it> (cherry picked from commit d02729663347c003e8afbeda0e3d9227aff5806b)
Diffstat (limited to 'src/common/gui')
-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);