summaryrefslogtreecommitdiffstats
path: root/src/sidebars.cpp
diff options
context:
space:
mode:
authorMichele Calgaro <[email protected]>2024-01-05 10:33:17 +0900
committerMichele Calgaro <[email protected]>2024-01-07 19:57:28 +0900
commitf03ddc53e2767bb7f88374996bb192275de12e51 (patch)
tree9612fb1e8b8af0874506f53c77b2a9b748f31bb9 /src/sidebars.cpp
parenta822e3e4661711452c3cb35d5efaae67c56a071a (diff)
downloaddolphin-f03ddc53e2767bb7f88374996bb192275de12e51.tar.gz
dolphin-f03ddc53e2767bb7f88374996bb192275de12e51.zip
Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
Signed-off-by: Michele Calgaro <[email protected]> (cherry picked from commit 1bc48a6ae2706e13093955e8181ac2f58a7ec3ac)
Diffstat (limited to 'src/sidebars.cpp')
-rw-r--r--src/sidebars.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/sidebars.cpp b/src/sidebars.cpp
index 7b65ff7..fd75e64 100644
--- a/src/sidebars.cpp
+++ b/src/sidebars.cpp
@@ -65,8 +65,8 @@ leftSidebar::leftSidebar(TQWidget* parent) :
createPage(selectedIndex);
- connect(m_pagesSelector, TQT_SIGNAL(activated(int)),
- this, TQT_SLOT(createPage(int)));
+ connect(m_pagesSelector, TQ_SIGNAL(activated(int)),
+ this, TQ_SLOT(createPage(int)));
}
leftSidebar::~leftSidebar()
@@ -140,8 +140,8 @@ rightSidebar::rightSidebar(TQWidget* parent) :
createPage(selectedIndex);
- connect(m_pagesSelector, TQT_SIGNAL(activated(int)),
- this, TQT_SLOT(createPage(int)));
+ connect(m_pagesSelector, TQ_SIGNAL(activated(int)),
+ this, TQ_SLOT(createPage(int)));
}
rightSidebar::~rightSidebar()