summaryrefslogtreecommitdiffstats
path: root/src/common
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
parente73c7baebb1402b681c42d8e48b58c8a0644af22 (diff)
downloadpiklab-85ec028d6badd6fda0b194b62e19f8848e6524af.tar.gz
piklab-85ec028d6badd6fda0b194b62e19f8848e6524af.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')
-rw-r--r--src/common/common/synchronous.cpp2
-rw-r--r--src/common/gui/hexword_gui.cpp2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/common/common/synchronous.cpp b/src/common/common/synchronous.cpp
index 05c535e..dbf782f 100644
--- a/src/common/common/synchronous.cpp
+++ b/src/common/common/synchronous.cpp
@@ -26,7 +26,7 @@ bool Synchronous::enterLoop()
TQWidget *dummy = 0;
if ( tqApp->type()!=TQApplication::Tty ) {
dummy = new TQWidget(0, 0, WType_Dialog | WShowModal);
- dummy->setFocusPolicy(TQ_NoFocus);
+ dummy->setFocusPolicy(TQWidget::NoFocus);
tqt_enter_modal(dummy);
}
TQApplication::eventLoop()->enterLoop();
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);