From eec1e88373e3dcb2840889a75fa3f2a859b1f61c Mon Sep 17 00:00:00 2001 From: Pino Toscano Date: Wed, 29 Aug 2007 11:59:54 +0000 Subject: [PATCH] comment out the MovieAction, unexported and unimplemented svn path=/trunk/KDE/kdegraphics/okular/; revision=706091 --- core/action.cpp | 2 ++ core/action.h | 2 ++ 2 files changed, 4 insertions(+) diff --git a/core/action.cpp b/core/action.cpp index 8c37097b1..7bdfd5f4c 100644 --- a/core/action.cpp +++ b/core/action.cpp @@ -324,6 +324,7 @@ Okular::Sound *SoundAction::sound() const // MovieAction +#if 0 class Okular::MovieActionPrivate : public Okular::ActionPrivate { public: @@ -351,3 +352,4 @@ QString MovieAction::actionTip() const { return i18n( "Play movie..." ); } +#endif diff --git a/core/action.h b/core/action.h index 02ac3e21a..9828a28b9 100644 --- a/core/action.h +++ b/core/action.h @@ -331,6 +331,7 @@ class OKULAR_EXPORT SoundAction : public Action Q_DISABLE_COPY( SoundAction ) }; +#if 0 /** * The Movie action plays a video on activation. */ @@ -361,6 +362,7 @@ class MovieAction : public Action Q_DECLARE_PRIVATE( MovieAction ) Q_DISABLE_COPY( MovieAction ) }; +#endif }