diff options
Diffstat (limited to 'src/components/voiceinfobox.hpp')
-rw-r--r-- | src/components/voiceinfobox.hpp | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/src/components/voiceinfobox.hpp b/src/components/voiceinfobox.hpp index 0117c0d..74aad27 100644 --- a/src/components/voiceinfobox.hpp +++ b/src/components/voiceinfobox.hpp @@ -1,9 +1,11 @@ #pragma once -#include <gtkmm/box.h> -#include <gtkmm/eventbox.h> -#include <gtkmm/image.h> -#include <gtkmm/label.h> +#ifdef WITH_VOICE + + #include <gtkmm/box.h> + #include <gtkmm/eventbox.h> + #include <gtkmm/image.h> + #include <gtkmm/label.h> class VoiceInfoBox : public Gtk::Box { public: @@ -18,3 +20,5 @@ private: Gtk::EventBox m_disconnect_ev; Gtk::Image m_disconnect_img; }; + +#endif |