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 }