[kde-doc-english] [skrooge/kf5] /: Merge branch 'master' of kde:skrooge into kf5
Stephane Mankowski
stephane at mankowski.fr
Sat Mar 21 20:45:46 UTC 2015
Git commit d8eee9a1151aab4d6b4d7c95bcc8a3ab1a1bb461 by Stephane Mankowski.
Committed on 21/03/2015 at 20:45.
Pushed by smankowski into branch 'kf5'.
Merge branch 'master' of kde:skrooge into kf5
Conflicts:
plugins/generic/skg_advice/skgadviceboardwidget.cpp
plugins/generic/skg_properties/skgpropertiesplugin.cpp
plugins/skrooge/skrooge_operation/skgoperationpluginwidget_base.ui
plugins/skrooge/skrooge_report/skgreportpluginwidget.cpp
skgbasegui/skgobjectmodelbase.cpp
skgbasemodeler/skgdocument.cpp
tests/skgbankmodelertest/CMakeLists.txt
M +17 -0 CHANGELOG
M +26 -3 doc/index.docbook
M +87 -38 plugins/generic/skg_advice/skgadviceboardwidget.cpp
M +3 -0 plugins/generic/skg_advice/skgadviceboardwidget.h
M +1 -1 plugins/generic/skg_bookmark/skgbookmarkplugindockwidget.cpp
M +1 -1 plugins/generic/skg_properties/skgpropertiesplugin.cpp
M +4 -4 plugins/generic/skg_properties/skgpropertiesplugindockwidget.cpp
M +95 -95 plugins/import/skrooge_import_ofx/skgimportpluginofx.cpp
M +15 -15 plugins/skrooge/skrooge_bank/skgbankplugin.cpp
M +15 -15 plugins/skrooge/skrooge_budget/skgbudgetplugin.cpp
M +8 -8 plugins/skrooge/skrooge_calculator/skgcalculatorplugin.cpp
M +22 -22 plugins/skrooge/skrooge_categories/skgcategoriesplugin.cpp
M +26 -26 plugins/skrooge/skrooge_importexport/skgimportexportplugin.cpp
M +85 -62 plugins/skrooge/skrooge_operation/skgoperationplugin.cpp
M +37 -5 plugins/skrooge/skrooge_operation/skgoperationpluginwidget.cpp
M +28 -21 plugins/skrooge/skrooge_operation/skgoperationpluginwidget_base.ui
M +7 -7 plugins/skrooge/skrooge_payee/skgpayeeplugin.cpp
M +121 -112 plugins/skrooge/skrooge_report/skgreportplugin.cpp
M +9 -0 plugins/skrooge/skrooge_report/skgreportplugin.h
M +111 -59 plugins/skrooge/skrooge_report/skgreportpluginwidget.cpp
M +0 -3 plugins/skrooge/skrooge_report/skgreportpluginwidget.h
M +24 -24 plugins/skrooge/skrooge_scheduled/skgscheduledplugin.cpp
M +3 -2 plugins/skrooge/skrooge_scheduled/skgscheduledpluginwidget.cpp
M +8 -8 plugins/skrooge/skrooge_search/skgsearchplugin.cpp
M +81 -81 plugins/skrooge/skrooge_unit/skgunitplugin.cpp
M +5 -0 skgbankmodeler/skgimportexportmanager.cpp
M +1 -1 skgbankmodeler/skgoperationobject.cpp
M +3 -2 skgbasegui/skgfilteredtableview.cpp
M +2 -0 skgbasegui/skgmainpanel.cpp
M +5 -0 skgbasegui/skgmainpanel.h
M +14 -4 skgbasegui/skgobjectmodelbase.cpp
M +33 -11 skgbasemodeler/skgdocument.cpp
M +0 -4 skgbasemodeler/skgerror.h
M +2 -1 tests/skgbankmodelertest/CMakeLists.txt
M +1 -0 tests/skgbankmodelertest/skgtestimportafb120.cpp
M +2 -2 tests/skgbankmodelertest/skgtestimportofx.cpp
M +29 -15 tests/skgbasemodelertest/skgtestfile.cpp
M +18 -1 tests/skgbasemodelertest/skgtestmultidocument.cpp
http://commits.kde.org/skrooge/d8eee9a1151aab4d6b4d7c95bcc8a3ab1a1bb461
diff --cc plugins/generic/skg_advice/skgadviceboardwidget.cpp
index cf9b357,37cab72..2abf2d7
--- a/plugins/generic/skg_advice/skgadviceboardwidget.cpp
+++ b/plugins/generic/skg_advice/skgadviceboardwidget.cpp
@@@ -224,13 -221,13 +225,13 @@@ void SKGAdviceBoardWidget::dataModified
icon->setCursor(Qt::PointingHandCursor);
icon->setAutoRaise(true);
- KMenu* menu = new KMenu(this);
+ QMenu* menu = new QMenu(this);
menu->setIcon(icon->icon());
for (int k = 0; k < nbSolution; ++k) {
- SKGAdvice::SKGAdviceAction adviceAction=autoCorrections.at(k);
+ SKGAdvice::SKGAdviceAction adviceAction = autoCorrections.at(k);
QString actionText = adviceAction.Title;
QAction* action = SKGMainPanel::getMainPanel()->getGlobalAction(QString(actionText).remove("skg://"), false);
- QAction* act;
+ QAction* act;
if (action) {
// This is an action
act = menu->addAction(action->icon(), action->text(), SKGMainPanel::getMainPanel(), SLOT(openPage()));
@@@ -272,9 -291,15 +295,15 @@@
more->setIconSize(QSize(22, 22));
more->setMaximumSize(QSize(22, 22));
more->setCursor(Qt::PointingHandCursor);
+ more->setToolTip(i18nc("Information message", "Display all advices"));
- connect(more, SIGNAL(clicked(bool)), this, SLOT(moreAdvice()), Qt::QueuedConnection);
+ connect(more, &QPushButton::clicked, this, &SKGAdviceBoardWidget::moreAdvice, Qt::QueuedConnection);
- m_layout->addRow(more, new QLabel(this));
+ if (apply) {
+ m_layout->addRow(more, apply);
+ apply = NULL;
+ } else {
+ m_layout->addRow(more, new QLabel(this));
+ }
} else if (nbDisplayedAdvice > 7) {
// Add less
QPushButton* less = new QPushButton(this);
@@@ -282,9 -307,18 +311,18 @@@
less->setIconSize(QSize(22, 22));
less->setMaximumSize(QSize(22, 22));
less->setCursor(Qt::PointingHandCursor);
+ less->setToolTip(i18nc("Information message", "Display less advices"));
- connect(less, SIGNAL(clicked(bool)), this, SLOT(lessAdvice()), Qt::QueuedConnection);
+ connect(less, &QPushButton::clicked, this, &SKGAdviceBoardWidget::lessAdvice, Qt::QueuedConnection);
+ if (apply) {
+ m_layout->addRow(less, apply);
+ apply = NULL;
+ } else {
+ m_layout->addRow(less, new QLabel(this));
+ }
+ }
- m_layout->addRow(less, new QLabel(this));
+ if (apply) {
+ m_layout->addRow(apply, new QLabel(this));
}
// Add manual refresh button
@@@ -293,8 -327,9 +331,9 @@@
m_refresh->setIconSize(QSize(22, 22));
m_refresh->setMaximumSize(QSize(22, 22));
m_refresh->setCursor(Qt::PointingHandCursor);
+ m_refresh->setToolTip(i18nc("Information message", "Refresh advices"));
m_refresh->hide();
- connect(m_refresh, SIGNAL(clicked(bool)), this, SLOT(dataModifiedForce()), Qt::QueuedConnection);
+ connect(m_refresh, &QPushButton::clicked, this, &SKGAdviceBoardWidget::dataModifiedForce, Qt::QueuedConnection);
m_layout->addRow(m_refresh, new QLabel(this));
diff --cc plugins/generic/skg_advice/skgadviceboardwidget.h
index 0e897a1,4133134..80395e9
--- a/plugins/generic/skg_advice/skgadviceboardwidget.h
+++ b/plugins/generic/skg_advice/skgadviceboardwidget.h
@@@ -78,9 -79,11 +79,11 @@@ private
int m_maxAdvice;
bool m_refreshNeeded;
- KAction* m_menuAuto;
+ QAction* m_menuAuto;
QPushButton* m_refresh;
QFormLayout* m_layout;
+ QList<QAction*> m_recommendedActions;
+ bool m_inapplyall;
};
#endif // SKGADVICEBOARDWIDGET_H
diff --cc plugins/skrooge/skrooge_report/skgreportpluginwidget.cpp
index eba943b,4ef3b37..076a1c3
--- a/plugins/skrooge/skrooge_report/skgreportpluginwidget.cpp
+++ b/plugins/skrooge/skrooge_report/skgreportpluginwidget.cpp
@@@ -20,11 -20,12 +20,13 @@@
* @author Stephane MANKOWSKI / Guillaume DE BURE
*/
#include "skgreportpluginwidget.h"
+ #include "skgreportplugin.h"
-#include <KLocale>
-#include <KMenu>
+#include <klocalizedstring.h>
+#include <qmenu.h>
- #include <QGraphicsScene>
-#include <QtGui/QGraphicsScene>
++#include <qgraphicsscene.h>
++#include <qlistwidget.h>
#include "skgmainpanel.h"
#include "skgbankincludes.h"
@@@ -153,26 -148,29 +151,29 @@@ SKGReportPluginWidget::SKGReportPluginW
ui.kColumns->setCurrentIndex(2);
}
- connect(ui.kTableWithGraph, SIGNAL(selectionChanged()), this, SLOT(onSelectionChanged()));
+ connect(ui.kTableWithGraph, &SKGTableWithGraph::selectionChanged, this, &SKGReportPluginWidget::onSelectionChanged);
// Refresh
- connect(ui.kPeriod, SIGNAL(changed()), this, SLOT(refresh()), Qt::QueuedConnection);
-
- connect(ui.kColumns, SIGNAL(currentIndexChanged(int)), this, SLOT(refresh()), Qt::QueuedConnection);
- connect(ui.kLines, SIGNAL(currentIndexChanged(int)), this, SLOT(refresh()), Qt::QueuedConnection);
- connect(ui.kMode, SIGNAL(currentIndexChanged(int)), this, SLOT(refresh()), Qt::QueuedConnection);
- connect(ui.kIncomes, SIGNAL(stateChanged(int)), this, SLOT(refresh()), Qt::QueuedConnection);
- connect(ui.kExpenses, SIGNAL(stateChanged(int)), this, SLOT(refresh()), Qt::QueuedConnection);
- connect(ui.kTransfers, SIGNAL(stateChanged(int)) , this, SLOT(refresh()), Qt::QueuedConnection);
- connect(ui.kGrouped, SIGNAL(stateChanged(int)) , this, SLOT(refresh()), Qt::QueuedConnection);
- connect(ui.kTracked, SIGNAL(stateChanged(int)) , this, SLOT(refresh()), Qt::QueuedConnection);
- connect(ui.kForecastCmb, SIGNAL(currentIndexChanged(int)) , this, SLOT(refresh()), Qt::QueuedConnection);
- connect(ui.kForecastValue, SIGNAL(valueChanged(int)) , this, SLOT(refresh()), Qt::QueuedConnection);
- connect(ui.kCorrectedBy, SIGNAL(currentIndexChanged(int)) , this, SLOT(refresh()), Qt::QueuedConnection);
- connect(ui.kCorrectedByMode, SIGNAL(currentIndexChanged(int)) , this, SLOT(refresh()), Qt::QueuedConnection);
-
- connect(getDocument(), SIGNAL(tableModified(QString,int,bool)), this, SLOT(dataModified(QString,int)));
- connect(SKGMainPanel::getMainPanel(), SIGNAL(currentPageChanged()), this, SLOT(pageChanged()), Qt::QueuedConnection);
- connect(SKGMainPanel::getMainPanel(), SIGNAL(pageClosed()), this, SLOT(pageChanged()), Qt::QueuedConnection);
- connect(ui.kOtherFilters, SIGNAL(itemChanged(QListWidgetItem*)), this, SLOT(pageChanged()), Qt::QueuedConnection);
- connect(ui.kOtherFilters, SIGNAL(itemChanged(QListWidgetItem*)), this, SLOT(refresh()), Qt::QueuedConnection);
+ connect(ui.kPeriod, &SKGPeriodEdit::changed, this, &SKGReportPluginWidget::refresh, Qt::QueuedConnection);
+
+ connect(ui.kColumns, static_cast<void (SKGComboBox::*)(const QString&)>(&SKGComboBox::currentIndexChanged), this, &SKGReportPluginWidget::refresh, Qt::QueuedConnection);
+ connect(ui.kLines, static_cast<void (SKGComboBox::*)(const QString&)>(&SKGComboBox::currentIndexChanged), this, &SKGReportPluginWidget::refresh, Qt::QueuedConnection);
+ connect(ui.kMode, static_cast<void (SKGComboBox::*)(const QString&)>(&SKGComboBox::currentIndexChanged), this, &SKGReportPluginWidget::refresh, Qt::QueuedConnection);
+ connect(ui.kIncomes, &QCheckBox::stateChanged, this, &SKGReportPluginWidget::refresh, Qt::QueuedConnection);
+ connect(ui.kExpenses, &QCheckBox::stateChanged, this, &SKGReportPluginWidget::refresh, Qt::QueuedConnection);
+ connect(ui.kTransfers, &QCheckBox::stateChanged, this, &SKGReportPluginWidget::refresh, Qt::QueuedConnection);
+ connect(ui.kGrouped, &QCheckBox::stateChanged, this, &SKGReportPluginWidget::refresh, Qt::QueuedConnection);
+ connect(ui.kTracked, &QCheckBox::stateChanged, this, &SKGReportPluginWidget::refresh, Qt::QueuedConnection);
+ connect(ui.kForecastCmb, static_cast<void (SKGComboBox::*)(const QString&)>(&SKGComboBox::currentIndexChanged), this, &SKGReportPluginWidget::refresh, Qt::QueuedConnection);
+ connect(ui.kForecastValue, static_cast<void (QSlider::*)(int)>(&QSlider::valueChanged), this, &SKGReportPluginWidget::refresh, Qt::QueuedConnection);
+ connect(ui.kCorrectedBy, static_cast<void (SKGUnitComboBox::*)(int)>(&SKGUnitComboBox::currentIndexChanged), this, &SKGReportPluginWidget::refresh, Qt::QueuedConnection);
+ connect(ui.kCorrectedByMode, static_cast<void (SKGComboBox::*)(const QString&)>(&SKGComboBox::currentIndexChanged), this, &SKGReportPluginWidget::refresh, Qt::QueuedConnection);
+
+ connect(getDocument(), &SKGDocument::tableModified, this, &SKGReportPluginWidget::dataModified);
+ connect(SKGMainPanel::getMainPanel(), &SKGMainPanel::currentPageChanged, this, &SKGReportPluginWidget::pageChanged, Qt::QueuedConnection);
++ connect(SKGMainPanel::getMainPanel(), &SKGMainPanel::pageClosed, this, &SKGReportPluginWidget::pageChanged, Qt::QueuedConnection);
++ connect(ui.kOtherFilters, &QCheckBox::itemChanged, this, &SKGReportPluginWidget::pageChanged, Qt::QueuedConnection);
++ connect(ui.kOtherFilters, &QCheckBox::itemChanged, this, &SKGReportPluginWidget::refresh, Qt::QueuedConnection);
if (iMinimmumMode) {
ui.kTableWithGraph->getShowWidget()->setState("\"graph\"");
@@@ -394,24 -394,16 +397,16 @@@ void SKGReportPluginWidget::setState(co
refresh();
ui.kTableWithGraph->setState(tableAndGraphState);
- if (!title.isEmpty()) {
- ui.kTitle->setComment("<html><body><b>" % SKGServices::stringToHtml(title) % "</b></body></html>");
- ui.kTitle->show();
- ui.kResetInternalFilter->show();
- } else {
- ui.kTitle->hide();
- ui.kResetInternalFilter->hide();
- }
- if (!title_icon.isEmpty()) {
- ui.kTitle->setPixmap(QIcon::fromTheme(title_icon).pixmap(22, 22), KTitleWidget::ImageLeft);
- }
- if (!m_operationWhereClause.isEmpty()) {
- // We keep a copy of given state in case of bookmark
- m_lastState = doc;
- m_timer.start(300);
- } else {
- m_lastState.clear();
+
+ if (!title.isEmpty() && !wc.isEmpty()) {
- QListWidgetItem* item = new QListWidgetItem(KIcon(title_icon), title);
++ QListWidgetItem* item = new QListWidgetItem(QIcon::fromTheme(title_icon), title);
+ item->setCheckState(Qt::Checked);
+ item->setFlags(Qt::ItemIsUserCheckable | Qt::ItemIsEnabled);
+ item->setData(1000, wc);
+ item->setData(1001, title_icon);
+ ui.kOtherFilters->addItem(item);
}
+
m_previousParametersUsed = "";
}
@@@ -1271,6 -1320,7 +1323,6 @@@ void SKGReportPluginWidget::setSettings
QString SKGReportPluginWidget::getWhereClauseForProperty(const QString& iProperty) const
{
QString propertyName = iProperty.right(iProperty.length() - 2);
- return "IFNULL((SELECT t_value FROM parameters WHERE t_uuid_parent=v_suboperation_consolidated.id||'-suboperation' AND t_name='" % propertyName % "'), IFNULL((SELECT t_value FROM parameters WHERE t_uuid_parent=v_suboperation_consolidated.i_OPID||'-operation' AND t_name='" % propertyName % "'), '#NULL#'))";
+ return "IFNULL((SELECT t_value FROM parameters WHERE t_uuid_parent=v_suboperation_consolidated.id||'-suboperation' AND t_name='" % propertyName % "'), IFNULL((SELECT t_value FROM parameters WHERE t_uuid_parent=v_suboperation_consolidated.i_OPID||'-operation' AND t_name='" % propertyName % "'), '#NULL#'))";
}
-#include "skgreportpluginwidget.moc"
diff --cc skgbasegui/skgfilteredtableview.cpp
index 6c87244,723c94f..3c61d7c
--- a/skgbasegui/skgfilteredtableview.cpp
+++ b/skgbasegui/skgfilteredtableview.cpp
@@@ -180,11 -179,12 +180,12 @@@ void SKGFilteredTableView::setFilter(co
if (m_objectModel && !iWhereClause.isEmpty()) {
getShowWidget()->setEnabled(false);
- ui.kTitle->setComment("<html><body><b>" % SKGServices::stringToHtml(iText) % "</b></body></html>");
- ui.kTitle->show();
+ QFontMetrics fm(fontMetrics());
+ ui.kTitle->setComment("<html><body><b>" % SKGServices::stringToHtml(fm.elidedText(iText, Qt::ElideMiddle, 2000)) % "</b></body></html>");
+ ui.kTitle->setToolTip(iText);
ui.kResetInternalFilter->show();
- ui.kTitle->setPixmap(KIcon(iIcon).pixmap(22, 22), KTitleWidget::ImageLeft);
+ ui.kTitle->setPixmap(iIcon.pixmap(22, 22), KTitleWidget::ImageLeft);
m_objectModel->setFilter(iWhereClause);
m_objectModel->refresh();
diff --cc skgbasemodeler/skgerror.h
index e9b269a,25fe3b5..a82f83a
--- a/skgbasemodeler/skgerror.h
+++ b/skgbasemodeler/skgerror.h
@@@ -60,10 -60,10 +60,6 @@@ class SKGBASEMODELER_EXPORT SKGError :
*/
Q_PROPERTY(QString message READ getMessage WRITE setMessage)
/**
-- * Full message of the error
-- */
-- Q_PROPERTY(QString message READ getFullMessageWithHistorical)
-- /**
* To know if it is a success of the error
*/
Q_PROPERTY(bool succeeded READ isSucceeded)
diff --cc tests/skgbankmodelertest/CMakeLists.txt
index 440f3cf,4ba363a..9446366
--- a/tests/skgbankmodelertest/CMakeLists.txt
+++ b/tests/skgbankmodelertest/CMakeLists.txt
@@@ -64,47 -68,48 +65,46 @@@ ADD_EXECUTABLE(skgtestunit skgtestunit.
ADD_EXECUTABLE(skgtestrestore skgtestrestore.cpp)
ADD_EXECUTABLE(skgtestvariousbugs skgtestvariousbugs.cpp)
--
-TARGET_LINK_LIBRARIES(skgtestautoreconcile ${QT_QTCORE_LIBRARY} ${KDE4_KIO_LIBS} skgbankmodeler skgbasemodeler)
-TARGET_LINK_LIBRARIES(skgtestbankandaccount ${QT_QTCORE_LIBRARY} ${KDE4_KIO_LIBS} skgbankmodeler skgbasemodeler)
-TARGET_LINK_LIBRARIES(skgtestbankreport ${QT_QTCORE_LIBRARY} ${KDE4_KIO_LIBS} skgbankmodeler skgbasemodeler)
-TARGET_LINK_LIBRARIES(skgtestbudget ${QT_QTCORE_LIBRARY} ${KDE4_KIO_LIBS} skgbankmodeler skgbasemodeler)
-TARGET_LINK_LIBRARIES(skgtestcategory ${QT_QTCORE_LIBRARY} ${KDE4_KIO_LIBS} skgbankmodeler skgbasemodeler)
-TARGET_LINK_LIBRARIES(skgtestdocparameter ${QT_QTCORE_LIBRARY} ${KDE4_KIO_LIBS} skgbankmodeler skgbasemodeler)
-TARGET_LINK_LIBRARIES(skgtestmigration ${QT_QTCORE_LIBRARY} ${KDE4_KIO_LIBS} skgbankmodeler skgbasemodeler)
-TARGET_LINK_LIBRARIES(skgtestbigdocument ${QT_QTCORE_LIBRARY} ${KDE4_KIO_LIBS} skgbankmodeler skgbasemodeler)
-TARGET_LINK_LIBRARIES(skgtestobjects ${QT_QTCORE_LIBRARY} ${QT_QTGUI_LIBRARY} skgbankmodeler skgbasemodeler)
-TARGET_LINK_LIBRARIES(skgtestoperation ${QT_QTCORE_LIBRARY} ${KDE4_KIO_LIBS} skgbankmodeler skgbasemodeler)
-TARGET_LINK_LIBRARIES(skgtestrecurrent ${QT_QTCORE_LIBRARY} ${KDE4_KIO_LIBS} skgbankmodeler skgbasemodeler)
-TARGET_LINK_LIBRARIES(skgtestrefund ${QT_QTCORE_LIBRARY} ${KDE4_KIO_LIBS} skgbankmodeler skgbasemodeler)
-TARGET_LINK_LIBRARIES(skgtestpayee ${QT_QTCORE_LIBRARY} ${KDE4_KIO_LIBS} skgbankmodeler skgbasemodeler)
-TARGET_LINK_LIBRARIES(skgtestimportafb120 ${QT_QTCORE_LIBRARY} ${KDE4_KIO_LIBS} skgbankmodeler skgbasemodeler)
-TARGET_LINK_LIBRARIES(skgtestimportiif ${QT_QTCORE_LIBRARY} ${KDE4_KIO_LIBS} skgbankmodeler skgbasemodeler)
-TARGET_LINK_LIBRARIES(skgtestimportqif1 ${QT_QTCORE_LIBRARY} ${KDE4_KIO_LIBS} skgbankmodeler skgbasemodeler)
-TARGET_LINK_LIBRARIES(skgtestimportqif2 ${QT_QTCORE_LIBRARY} ${KDE4_KIO_LIBS} skgbankmodeler skgbasemodeler)
-TARGET_LINK_LIBRARIES(skgtestimportgnucash ${QT_QTCORE_LIBRARY} ${KDE4_KIO_LIBS} skgbankmodeler skgbasemodeler)
-TARGET_LINK_LIBRARIES(skgtestimportgsb ${QT_QTCORE_LIBRARY} ${KDE4_KIO_LIBS} skgbankmodeler skgbasemodeler)
-TARGET_LINK_LIBRARIES(skgtestimportkmy1 ${QT_QTCORE_LIBRARY} ${KDE4_KIO_LIBS} skgbankmodeler skgbasemodeler)
-TARGET_LINK_LIBRARIES(skgtestimportkmy2 ${QT_QTCORE_LIBRARY} ${KDE4_KIO_LIBS} skgbankmodeler skgbasemodeler)
-TARGET_LINK_LIBRARIES(skgtestimportkmy3 ${QT_QTCORE_LIBRARY} ${KDE4_KIO_LIBS} skgbankmodeler skgbasemodeler)
-TARGET_LINK_LIBRARIES(skgtestimportkmy4 ${QT_QTCORE_LIBRARY} ${KDE4_KIO_LIBS} skgbankmodeler skgbasemodeler)
-TARGET_LINK_LIBRARIES(skgtestimportmmb ${QT_QTCORE_LIBRARY} ${KDE4_KIO_LIBS} skgbankmodeler skgbasemodeler)
-TARGET_LINK_LIBRARIES(skgtestimportmny1 ${QT_QTCORE_LIBRARY} ${KDE4_KIO_LIBS} skgbankmodeler skgbasemodeler)
-TARGET_LINK_LIBRARIES(skgtestimportmny2 ${QT_QTCORE_LIBRARY} ${KDE4_KIO_LIBS} skgbankmodeler skgbasemodeler)
-TARGET_LINK_LIBRARIES(skgtestimportmny3 ${QT_QTCORE_LIBRARY} ${KDE4_KIO_LIBS} skgbankmodeler skgbasemodeler)
-TARGET_LINK_LIBRARIES(skgtestimportmt940 ${QT_QTCORE_LIBRARY} ${KDE4_KIO_LIBS} skgbankmodeler skgbasemodeler)
-TARGET_LINK_LIBRARIES(skgtestimportskg ${QT_QTCORE_LIBRARY} ${KDE4_KIO_LIBS} skgbankmodeler skgbasemodeler)
-TARGET_LINK_LIBRARIES(skgtestimportstockqif ${QT_QTCORE_LIBRARY} ${KDE4_KIO_LIBS} skgbankmodeler skgbasemodeler)
-TARGET_LINK_LIBRARIES(skgtestimportcsv ${QT_QTCORE_LIBRARY} ${KDE4_KIO_LIBS} skgbankmodeler skgbasemodeler)
-TARGET_LINK_LIBRARIES(skgtestimportofx ${QT_QTCORE_LIBRARY} ${KDE4_KIO_LIBS} skgbankmodeler skgbasemodeler)
-TARGET_LINK_LIBRARIES(skgtestimportcsvunit ${QT_QTCORE_LIBRARY} ${KDE4_KIO_LIBS} skgbankmodeler skgbasemodeler)
-TARGET_LINK_LIBRARIES(skgtestimportxhb ${QT_QTCORE_LIBRARY} ${KDE4_KIO_LIBS} skgbankmodeler skgbasemodeler)
-TARGET_LINK_LIBRARIES(skgtestimporturls ${QT_QTCORE_LIBRARY} ${KDE4_KIO_LIBS} skgbankmodeler skgbasemodeler)
-TARGET_LINK_LIBRARIES(skgtestimportweboob ${QT_QTCORE_LIBRARY} ${KDE4_KIO_LIBS} skgbankmodeler skgbasemodeler)
-TARGET_LINK_LIBRARIES(skgtestinterest ${QT_QTCORE_LIBRARY} ${KDE4_KIO_LIBS} skgbankmodeler skgbasemodeler)
-TARGET_LINK_LIBRARIES(skgtestrule ${QT_QTCORE_LIBRARY} ${KDE4_KIO_LIBS} skgbankmodeler skgbasemodeler)
-TARGET_LINK_LIBRARIES(skgtestunit ${QT_QTCORE_LIBRARY} ${KDE4_KIO_LIBS} skgbankmodeler skgbasemodeler)
-TARGET_LINK_LIBRARIES(skgtestrestore ${QT_QTCORE_LIBRARY} ${KDE4_KIO_LIBS} skgbankmodeler skgbasemodeler)
-TARGET_LINK_LIBRARIES(skgtestvariousbugs ${QT_QTCORE_LIBRARY} ${KDE4_KIO_LIBS} skgbankmodeler skgbasemodeler)
+TARGET_LINK_LIBRARIES(skgtestautoreconcile Qt5::Core KF5::KIOWidgets skgbankmodeler skgbasemodeler)
+TARGET_LINK_LIBRARIES(skgtestbankandaccount Qt5::Core KF5::KIOWidgets skgbankmodeler skgbasemodeler)
+TARGET_LINK_LIBRARIES(skgtestbankreport Qt5::Core KF5::KIOWidgets skgbankmodeler skgbasemodeler)
+TARGET_LINK_LIBRARIES(skgtestbudget Qt5::Core KF5::KIOWidgets skgbankmodeler skgbasemodeler)
+TARGET_LINK_LIBRARIES(skgtestcategory Qt5::Core KF5::KIOWidgets skgbankmodeler skgbasemodeler)
+TARGET_LINK_LIBRARIES(skgtestdocparameter Qt5::Core KF5::KIOWidgets skgbankmodeler skgbasemodeler)
+TARGET_LINK_LIBRARIES(skgtestmigration Qt5::Core KF5::KIOWidgets skgbankmodeler skgbasemodeler)
+TARGET_LINK_LIBRARIES(skgtestbigdocument Qt5::Core KF5::KIOWidgets skgbankmodeler skgbasemodeler)
+TARGET_LINK_LIBRARIES(skgtestobjects Qt5::Core Qt5::Gui skgbankmodeler skgbasemodeler)
+TARGET_LINK_LIBRARIES(skgtestoperation Qt5::Core KF5::KIOWidgets skgbankmodeler skgbasemodeler)
+TARGET_LINK_LIBRARIES(skgtestrecurrent Qt5::Core KF5::KIOWidgets skgbankmodeler skgbasemodeler)
+TARGET_LINK_LIBRARIES(skgtestrefund Qt5::Core KF5::KIOWidgets skgbankmodeler skgbasemodeler)
+TARGET_LINK_LIBRARIES(skgtestpayee Qt5::Core KF5::KIOWidgets skgbankmodeler skgbasemodeler)
+TARGET_LINK_LIBRARIES(skgtestimportafb120 Qt5::Core KF5::KIOWidgets skgbankmodeler skgbasemodeler)
+TARGET_LINK_LIBRARIES(skgtestimportqif1 Qt5::Core KF5::KIOWidgets skgbankmodeler skgbasemodeler)
+TARGET_LINK_LIBRARIES(skgtestimportqif2 Qt5::Core KF5::KIOWidgets skgbankmodeler skgbasemodeler)
+TARGET_LINK_LIBRARIES(skgtestimportgnucash Qt5::Core KF5::KIOWidgets skgbankmodeler skgbasemodeler)
+TARGET_LINK_LIBRARIES(skgtestimportgsb Qt5::Core KF5::KIOWidgets skgbankmodeler skgbasemodeler)
+TARGET_LINK_LIBRARIES(skgtestimportkmy1 Qt5::Core KF5::KIOWidgets skgbankmodeler skgbasemodeler)
+TARGET_LINK_LIBRARIES(skgtestimportkmy2 Qt5::Core KF5::KIOWidgets skgbankmodeler skgbasemodeler)
+TARGET_LINK_LIBRARIES(skgtestimportkmy3 Qt5::Core KF5::KIOWidgets skgbankmodeler skgbasemodeler)
+TARGET_LINK_LIBRARIES(skgtestimportkmy4 Qt5::Core KF5::KIOWidgets skgbankmodeler skgbasemodeler)
+TARGET_LINK_LIBRARIES(skgtestimportmmb Qt5::Core KF5::KIOWidgets skgbankmodeler skgbasemodeler)
+TARGET_LINK_LIBRARIES(skgtestimportmny1 Qt5::Core KF5::KIOWidgets skgbankmodeler skgbasemodeler)
+TARGET_LINK_LIBRARIES(skgtestimportmny2 Qt5::Core KF5::KIOWidgets skgbankmodeler skgbasemodeler)
+TARGET_LINK_LIBRARIES(skgtestimportmny3 Qt5::Core KF5::KIOWidgets skgbankmodeler skgbasemodeler)
+TARGET_LINK_LIBRARIES(skgtestimportmt940 Qt5::Core KF5::KIOWidgets skgbankmodeler skgbasemodeler)
+TARGET_LINK_LIBRARIES(skgtestimportskg Qt5::Core KF5::KIOWidgets skgbankmodeler skgbasemodeler)
+TARGET_LINK_LIBRARIES(skgtestimportstockqif Qt5::Core KF5::KIOWidgets skgbankmodeler skgbasemodeler)
+TARGET_LINK_LIBRARIES(skgtestimportcsv Qt5::Core KF5::KIOWidgets skgbankmodeler skgbasemodeler)
+TARGET_LINK_LIBRARIES(skgtestimportofx Qt5::Core KF5::KIOWidgets skgbankmodeler skgbasemodeler)
+TARGET_LINK_LIBRARIES(skgtestimportcsvunit Qt5::Core KF5::KIOWidgets skgbankmodeler skgbasemodeler)
+TARGET_LINK_LIBRARIES(skgtestimportxhb Qt5::Core KF5::KIOWidgets skgbankmodeler skgbasemodeler)
+TARGET_LINK_LIBRARIES(skgtestimporturls Qt5::Core KF5::KIOWidgets skgbankmodeler skgbasemodeler)
+TARGET_LINK_LIBRARIES(skgtestimportweboob Qt5::Core KF5::KIOWidgets skgbankmodeler skgbasemodeler)
+TARGET_LINK_LIBRARIES(skgtestinterest Qt5::Core KF5::KIOWidgets skgbankmodeler skgbasemodeler)
+TARGET_LINK_LIBRARIES(skgtestrule Qt5::Core KF5::KIOWidgets skgbankmodeler skgbasemodeler)
+TARGET_LINK_LIBRARIES(skgtestunit Qt5::Core KF5::KIOWidgets skgbankmodeler skgbasemodeler)
+TARGET_LINK_LIBRARIES(skgtestrestore Qt5::Core KF5::KIOWidgets skgbankmodeler skgbasemodeler)
+TARGET_LINK_LIBRARIES(skgtestvariousbugs Qt5::Core KF5::KIOWidgets skgbankmodeler skgbasemodeler)
#Add test
ENABLE_TESTING()
More information about the kde-doc-english
mailing list