add ifdefs to fix conditional compilation

This commit is contained in:
Andrzej Rybczak
2015-11-04 21:01:29 +01:00
parent d7a16aebfc
commit 5ce704e31c
3 changed files with 12 additions and 2 deletions

View File

@@ -693,7 +693,9 @@ private:
virtual bool canBeRun() OVERRIDE;
virtual void run() OVERRIDE;
#ifdef HAVE_TAGLIB_H
const MPD::Song *m_song;
#endif // HAVE_TAGLIB_H
};
struct EditLibraryTag: BaseAction
@@ -788,7 +790,9 @@ private:
virtual bool canBeRun() OVERRIDE;
virtual void run() OVERRIDE;
#ifdef HAVE_TAGLIB_H
const MPD::Song *m_song;
#endif // HAVE_TAGLIB_H
};
struct JumpToPositionInSong: BaseAction