diff options
author | François Andriot <francois.andriot@free.fr> | 2016-03-21 23:52:44 +0100 |
---|---|---|
committer | Slávek Banko <slavek.banko@axis.cz> | 2016-03-21 23:52:44 +0100 |
commit | cfa36e1a95e82492c17225ff376911abb3688f62 (patch) | |
tree | 83e1f9d70128784084608e5b20cd78df0137fce7 /bab | |
parent | 1b58c83db36c7ddea6c8bcb4addc843b1124f097 (diff) | |
download | tde-style-baghira-cfa36e1a95e82492c17225ff376911abb3688f62.tar.gz tde-style-baghira-cfa36e1a95e82492c17225ff376911abb3688f62.zip |
Update autotools for new DSO linkage style
Fix FTBFS
Signed-off-by: François Andriot <francois.andriot@free.fr>
Diffstat (limited to 'bab')
-rw-r--r-- | bab/Makefile.am | 2 | ||||
-rw-r--r-- | bab/main.cpp | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/bab/Makefile.am b/bab/Makefile.am index bf7a71e..7f65671 100644 --- a/bab/Makefile.am +++ b/bab/Makefile.am @@ -19,4 +19,4 @@ bin_PROGRAMS = bab # the application source, library search path, and link libraries bab_SOURCES = main.cpp styleconfdialog.cpp bab_iface.skel bab_LDFLAGS = $(KDE_RPATH) $(all_libraries) -bab_LDADD = $(LIB_KDEUI) +bab_LDADD = $(LIB_QT) -lDCOP $(LIB_KDECORE) $(LIB_KDEUI) diff --git a/bab/main.cpp b/bab/main.cpp index 14b23d1..df09293 100644 --- a/bab/main.cpp +++ b/bab/main.cpp @@ -330,7 +330,7 @@ void bab::saveSettings(){ delete config; } -QPoint *BabSwitcher::globalPos = new QPoint::QPoint(0,0); +QPoint *BabSwitcher::globalPos = new QPoint(0,0); BabSwitcher::BabSwitcher(bab *parent, const char *name) : KSystemTray(parent,name), DCOPObject("babInterface") { |