From 0008104748e6613c41d60b0545c07ed34e16ddec Mon Sep 17 00:00:00 2001 From: Michele Calgaro Date: Sun, 5 Nov 2023 11:54:03 +0900 Subject: Replace Qt with TQt Signed-off-by: Michele Calgaro (cherry picked from commit 96c67c9b3924ab034d3d34aa03d3ea7cf0746587) --- kmymoney2/dialogs/kbalancechartdlg.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'kmymoney2/dialogs/kbalancechartdlg.cpp') diff --git a/kmymoney2/dialogs/kbalancechartdlg.cpp b/kmymoney2/dialogs/kbalancechartdlg.cpp index ef86bee..64ee282 100644 --- a/kmymoney2/dialogs/kbalancechartdlg.cpp +++ b/kmymoney2/dialogs/kbalancechartdlg.cpp @@ -98,7 +98,7 @@ KBalanceChartDlg::KBalanceChartDlg(const MyMoneyAccount& account, TQWidget* pare // draw future values in a different line style KDChartPropertySet propSetFutureValue("future value", KMM_KDCHART_PROPSET_NORMAL_DATA); - propSetFutureValue.setLineStyle(KDChartPropertySet::OwnID, Qt::DotLine); + propSetFutureValue.setLineStyle(KDChartPropertySet::OwnID, TQt::DotLine); int m_idPropFutureValue = chartWidget->params()->registerProperties(propSetFutureValue); KDChartPropertySet propSetLastValue("last value", m_idPropFutureValue); @@ -109,13 +109,13 @@ KBalanceChartDlg::KBalanceChartDlg(const MyMoneyAccount& account, TQWidget* pare int m_idPropLastValue = chartWidget->params()->registerProperties(propSetLastValue); KDChartPropertySet propSetMinBalance("min balance", m_idPropFutureValue); - propSetMinBalance.setLineStyle(KDChartPropertySet::OwnID, Qt::NoPen); + propSetMinBalance.setLineStyle(KDChartPropertySet::OwnID, TQt::NoPen); propSetMinBalance.setExtraLinesAlign(KDChartPropertySet::OwnID, TQt::AlignLeft | TQt::AlignRight); int m_idPropMinBalance = chartWidget->params()->registerProperties(propSetMinBalance); KDChartPropertySet propSetMaxCredit("max credit", m_idPropMinBalance); propSetMaxCredit.setExtraLinesColor(KDChartPropertySet::OwnID, KMyMoneyGlobalSettings::listNegativeValueColor()); - propSetMaxCredit.setExtraLinesStyle(KDChartPropertySet::OwnID, Qt::DotLine); + propSetMaxCredit.setExtraLinesStyle(KDChartPropertySet::OwnID, TQt::DotLine); int m_idPropMaxCredit = chartWidget->params()->registerProperties(propSetMaxCredit); KBalanceChartDlgLayout->addWidget(chartWidget, 10); -- cgit v1.2.3