diff options
author | Michele Calgaro <[email protected]> | 2023-09-02 15:53:00 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2023-09-04 10:10:24 +0900 |
commit | 7a9e5fefa81e292e306c727fab3e2a2b29c35c6e (patch) | |
tree | c8228cbdd6ab9c518a234013eb41e07f50ef3284 /kmplot | |
parent | a4d6089d3190091585de62066433167bc70007ab (diff) | |
download | tdeedu-7a9e5fefa81e292e306c727fab3e2a2b29c35c6e.tar.gz tdeedu-7a9e5fefa81e292e306c727fab3e2a2b29c35c6e.zip |
Replace TQ_*Focus* and TQ_Scale* defines
Signed-off-by: Michele Calgaro <[email protected]>
(cherry picked from commit f673794b12fa8685c6682fad9ce67a3a971e25f9)
Diffstat (limited to 'kmplot')
-rw-r--r-- | kmplot/kmplot/MainDlg.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kmplot/kmplot/MainDlg.cpp b/kmplot/kmplot/MainDlg.cpp index 6b8ebc10..99cc6704 100644 --- a/kmplot/kmplot/MainDlg.cpp +++ b/kmplot/kmplot/MainDlg.cpp @@ -86,7 +86,7 @@ MainDlg::MainDlg(TQWidget *parentWidget, const char *, TQObject *parent, const c view = new View( m_readonly, m_modified, m_popupmenu, parentWidget ); connect( view, TQT_SIGNAL( setStatusBarText(const TQString &)), this, TQT_SLOT( setReadOnlyStatusBarText(const TQString &) ) ); setWidget( view ); - view->setFocusPolicy(TQ_ClickFocus); + view->setFocusPolicy(TQWidget::ClickFocus); minmaxdlg = new KMinMax(view, m_parent); view->setMinMaxDlg(minmaxdlg); m_quickEdit = new KLineEdit( parentWidget ); |