diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-01-04 10:30:32 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-01-04 12:36:03 +0900 |
commit | c0332621bc998c9786f4841e86a62b7711fe4abf (patch) | |
tree | 38b3ab6688de7a9396a1c5993a8ec265f5f33b64 /kplato/kptreportview.cpp | |
parent | 6c81ff8d61ec679e735d3fbd875583b12f0ef0a5 (diff) | |
download | koffice-c0332621bc998c9786f4841e86a62b7711fe4abf.tar.gz koffice-c0332621bc998c9786f4841e86a62b7711fe4abf.zip |
Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'kplato/kptreportview.cpp')
-rw-r--r-- | kplato/kptreportview.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/kplato/kptreportview.cpp b/kplato/kptreportview.cpp index dbbae9a1..b346eef2 100644 --- a/kplato/kptreportview.cpp +++ b/kplato/kptreportview.cpp @@ -188,17 +188,17 @@ ReportView::ReportView(View *view, TQWidget *parent) initReportList(); - connect(m_reportList, TQT_SIGNAL(clicked(TQListViewItem*)), TQT_SLOT(slotReportListClicked(TQListViewItem*))); - connect(m_reportList, TQT_SIGNAL(selectionChanged(TQListViewItem*)), TQT_SLOT(slotReportListSelectionChanged(TQListViewItem*))); + connect(m_reportList, TQ_SIGNAL(clicked(TQListViewItem*)), TQ_SLOT(slotReportListClicked(TQListViewItem*))); + connect(m_reportList, TQ_SIGNAL(selectionChanged(TQListViewItem*)), TQ_SLOT(slotReportListSelectionChanged(TQListViewItem*))); //setCentralWidget(m_reportview); // Create the user interface. - //KStdAction::print(this,TQT_SLOT(slotPrint()),actionCollection()); - //KStdAction::quit(this,TQT_SLOT(slotFileQuit()),actionCollection()); + //KStdAction::print(this,TQ_SLOT(slotPrint()),actionCollection()); + //KStdAction::quit(this,TQ_SLOT(slotFileQuit()),actionCollection()); -// KStdAction::showToolbar(this,TQT_SLOT(slotViewToolBar()),actionCollection()); -// KStdAction::showStatusbar(this,TQT_SLOT(slotViewStatusBar()),actionCollection()); +// KStdAction::showToolbar(this,TQ_SLOT(slotViewToolBar()),actionCollection()); +// KStdAction::showStatusbar(this,TQ_SLOT(slotViewStatusBar()),actionCollection()); // statusBar(); |