diff options
author | Slávek Banko <[email protected]> | 2020-06-29 19:14:27 +0200 |
---|---|---|
committer | Slávek Banko <[email protected]> | 2020-06-29 19:14:27 +0200 |
commit | 4ca91724d7700edb009a3037c7020aa033ce14d7 (patch) | |
tree | 7bda9d552603888a4805b5c3fec4bdde10947ae7 /src/app/videoWindow.cpp | |
parent | 7090ff34ea4f78bb5ae8a2b644ed44893996cce6 (diff) | |
download | codeine-4ca91724d7700edb009a3037c7020aa033ce14d7.tar.gz codeine-4ca91724d7700edb009a3037c7020aa033ce14d7.zip |
Drop the use of the HAVE_XINE_H definition.
Add include <xine.h> to the appropriate headers.
Clean up the arrangement of include files.
Signed-off-by: Slávek Banko <[email protected]>
Diffstat (limited to 'src/app/videoWindow.cpp')
-rw-r--r-- | src/app/videoWindow.cpp | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/src/app/videoWindow.cpp b/src/app/videoWindow.cpp index 2ecf65a..0f2d540 100644 --- a/src/app/videoWindow.cpp +++ b/src/app/videoWindow.cpp @@ -3,22 +3,23 @@ #define CODEINE_DEBUG_PREFIX "VideoWindow" -#include "actions.h" #include <cmath> //std::log10 #include <cstdlib> -#include "../debug.h" #include <tdeapplication.h> //::makeStandardCaption #include <tdeconfig.h> #include <kiconloader.h> #include <tdepopupmenu.h> #include <twin.h> -#include "../mxcl.library.h" #include <tqcursor.h> #include <tqevent.h> +#include <tqslider.h> +#include <X11/Xlib.h> + +#include "../debug.h" +#include "../mxcl.library.h" +#include "actions.h" #include "slider.h" #include "theStream.h" -#include <X11/Xlib.h> -#include <xine.h> #include "xineEngine.h" |