diff options
author | Michele Calgaro <[email protected]> | 2023-09-02 15:47:19 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2023-09-02 15:47:19 +0900 |
commit | d02729663347c003e8afbeda0e3d9227aff5806b (patch) | |
tree | a09be42cc0b0a5f214fa0501ea1f14ea04552c3b /src/common/gui/hexword_gui.cpp | |
parent | 351412032793d56440bb2ecdf3f16d2f4c860d35 (diff) | |
download | piklab-d02729663347c003e8afbeda0e3d9227aff5806b.tar.gz piklab-d02729663347c003e8afbeda0e3d9227aff5806b.zip |
Replace TQ_*Focus* and TQ_Scale* defines
Signed-off-by: Michele Calgaro <[email protected]>
Diffstat (limited to 'src/common/gui/hexword_gui.cpp')
-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 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); |