diff options
author | Chris <xchrisx@uber.space> | 2020-02-09 02:43:14 +0100 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2020-02-09 12:41:45 +0900 |
commit | 81da5a94e98d78f3e08a8e3cbc1108839547f093 (patch) | |
tree | 18a26c2064b21250864554d2582baf0947da421d | |
parent | cfbd470a959bbe12882406568ee5d1932a460586 (diff) | |
download | basket-81da5a94e98d78f3e08a8e3cbc1108839547f093.tar.gz basket-81da5a94e98d78f3e08a8e3cbc1108839547f093.zip |
Fix FTBFS because of redefinition.
Signed-off-by: Chris <xchrisx@uber.space>
(cherry picked from commit 233f30d17feb475fce34f8e2ac07e4ee329ebe42)
-rw-r--r-- | src/Makefile.am | 2 | ||||
-rw-r--r-- | src/likeback.cpp | 2 |
2 files changed, 1 insertions, 3 deletions
diff --git a/src/Makefile.am b/src/Makefile.am index aaa1fa8..f4916b9 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -47,8 +47,6 @@ libbasketcommon_la_SOURCES = \ basketlistview.cpp debugwindow.cpp systemtray.cpp aboutdata.cpp \ basketstatusbar.cpp clickablelabel.cpp basketdcopiface.skel backup.cpp -libbasketcommon_la_COMPILE_FIRST = likeback_private.moc.cpp - ######################################################################### # APPLICATION SECTION ######################################################################### diff --git a/src/likeback.cpp b/src/likeback.cpp index ee2581d..8f3772a 100644 --- a/src/likeback.cpp +++ b/src/likeback.cpp @@ -851,5 +851,5 @@ void LikeBackDialog::requestFinished(int /*id*/, bool error) KDialogBase::slotOk(); } -#include "likeback_private.moc.cpp" +#include "likeback_private.moc" #include "likeback.moc" |