diff options
Diffstat (limited to 'sigscript/SoundWrapper.h')
| -rw-r--r-- | sigscript/SoundWrapper.h | 26 |
1 files changed, 13 insertions, 13 deletions
diff --git a/sigscript/SoundWrapper.h b/sigscript/SoundWrapper.h index 54ac3f38..a225f728 100644 --- a/sigscript/SoundWrapper.h +++ b/sigscript/SoundWrapper.h @@ -15,14 +15,14 @@ * with this program. If not, see <http://www.gnu.org/licenses/>. */ -#ifndef __POKESCRIPTING_SOUNDWRAPPER__ -#define __POKESCRIPTING_SOUNDWRAPPER__ +#ifndef __SIGSCRIPT_SOUNDWRAPPER__ +#define __SIGSCRIPT_SOUNDWRAPPER__ -// Pokescripting includes +// Sigscript includes #include "ObjectWrapper.h" -// Pokemod includes -#include "../pokemod/Sound.h" +// Sigmod includes +#include "../sigmod/Sound.h" // Forward declarations namespace Phonon @@ -30,27 +30,27 @@ namespace Phonon class MediaObject; } -namespace Pokescripting +namespace Sigscript { -class POKESCRIPTING_EXPORT SoundWrapper : public ObjectWrapper +class SIGSCRIPT_EXPORT SoundWrapper : public ObjectWrapper { Q_OBJECT public: - static SoundWrapper* create(const Pokemod::Sound* sound, PokemodWrapper* parent); + static SoundWrapper* create(const Sigmod::Sound* sound, SigmodWrapper* parent); - Q_SCRIPTABLE Pokemod::Sound::Type type(const QString& name) const; + Q_SCRIPTABLE Sigmod::Sound::Type type(const QString& name) const; Q_SCRIPTABLE QString name() const; - Q_SCRIPTABLE Pokemod::Sound::Type type() const; + Q_SCRIPTABLE Sigmod::Sound::Type type() const; Q_SCRIPTABLE Phonon::MediaObject* audio(); private: - SoundWrapper(const Pokemod::Sound* sound, PokemodWrapper* parent); + SoundWrapper(const Sigmod::Sound* sound, SigmodWrapper* parent); SoundWrapper& operator=(const SoundWrapper& rhs); - const Pokemod::Sound* m_sound; + const Sigmod::Sound* m_sound; }; } -Q_DECLARE_METATYPE(Pokescripting::SoundWrapper*) +Q_DECLARE_METATYPE(Sigscript::SoundWrapper*) #endif |
