summaryrefslogtreecommitdiffstats
path: root/kbounce
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2020-04-27 22:18:38 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2020-04-27 22:18:38 +0900
commitafd698aa6058379c021ff7062465eee7da714101 (patch)
tree8444dac5cf92351c4edad5c50778ea0d0979d235 /kbounce
parentf1f09914546b311028592dfb83db4e33d205dac6 (diff)
downloadtdegames-afd698aa6058379c021ff7062465eee7da714101.tar.gz
tdegames-afd698aa6058379c021ff7062465eee7da714101.zip
Rearrangement of libtdegames highscore headers.
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'kbounce')
-rw-r--r--kbounce/CMakeLists.txt1
-rw-r--r--kbounce/Makefile.am2
-rw-r--r--kbounce/highscores.h2
-rw-r--r--kbounce/kbounce.cpp4
-rw-r--r--kbounce/main.cpp2
5 files changed, 5 insertions, 6 deletions
diff --git a/kbounce/CMakeLists.txt b/kbounce/CMakeLists.txt
index da633954..34f96dff 100644
--- a/kbounce/CMakeLists.txt
+++ b/kbounce/CMakeLists.txt
@@ -17,7 +17,6 @@ include_directories(
${CMAKE_CURRENT_BINARY_DIR}
${CMAKE_CURRENT_SOURCE_DIR}
${CMAKE_SOURCE_DIR}/libtdegames
- ${CMAKE_SOURCE_DIR}/libtdegames/highscore
${TDE_INCLUDE_DIR}
${TQT_INCLUDE_DIRS}
)
diff --git a/kbounce/Makefile.am b/kbounce/Makefile.am
index c4994831..27ab105a 100644
--- a/kbounce/Makefile.am
+++ b/kbounce/Makefile.am
@@ -6,7 +6,7 @@ endif
SUBDIRS = pics sounds
-INCLUDES = -I$(top_srcdir)/libtdegames -I$(top_srcdir)/libtdegames/highscore $(all_includes)
+INCLUDES = -I$(top_srcdir)/libtdegames $(all_includes)
METASOURCES = AUTO
KDE_CXXFLAGS = $(KDE_USE_FPIE)
diff --git a/kbounce/highscores.h b/kbounce/highscores.h
index 59372ed6..63844e51 100644
--- a/kbounce/highscores.h
+++ b/kbounce/highscores.h
@@ -1,7 +1,7 @@
#ifndef HIGHSCORES_H
#define HIGHSCORES_H
-#include <kexthighscore.h>
+#include <highscore/kexthighscore.h>
using namespace KExtHighscore;
diff --git a/kbounce/kbounce.cpp b/kbounce/kbounce.cpp
index 11bd64fa..9fcb3c63 100644
--- a/kbounce/kbounce.cpp
+++ b/kbounce/kbounce.cpp
@@ -27,8 +27,8 @@
#include <kdebug.h>
#include <tdefiledialog.h>
#include <kstatusbar.h>
-#include <khighscore.h>
-#include <kexthighscore.h>
+#include <highscore/khighscore.h>
+#include <highscore/kexthighscore.h>
#include "kbounce.h"
#include "game.h"
diff --git a/kbounce/main.cpp b/kbounce/main.cpp
index e3243c56..e4d4b7d3 100644
--- a/kbounce/main.cpp
+++ b/kbounce/main.cpp
@@ -28,7 +28,7 @@
#include "kbounce.h"
-#include <khighscore.h>
+#include <highscore/khighscore.h>
#include <highscores.h>
using namespace std;