Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mumble-voip/mumble.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKissaki <kissaki@gmx.de>2013-01-13 03:06:29 +0400
committerKissaki <kissaki@gmx.de>2013-06-04 23:59:51 +0400
commit7642e722ff8c10b6c5e7641d7d54d576fd96b50c (patch)
treee0f4bbc0b678dbe72296010ebe6c9a37b9390a74 /src/mumble/GlobalShortcut_unix.h
parent40ca9b4507eed28c800fa724770d70cccc273882 (diff)
Adjust header guard defines for uniformity
* Append underline to header guard defines to match the others (except ui_) * Add guard to header files GlobalShortcut * Adjust mklic.pl script to add guard to licenses.h, and add updated licenses.h.
Diffstat (limited to 'src/mumble/GlobalShortcut_unix.h')
-rw-r--r--src/mumble/GlobalShortcut_unix.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/mumble/GlobalShortcut_unix.h b/src/mumble/GlobalShortcut_unix.h
index 48d12ef04..625018bfd 100644
--- a/src/mumble/GlobalShortcut_unix.h
+++ b/src/mumble/GlobalShortcut_unix.h
@@ -28,6 +28,9 @@
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
+#ifndef GLOBALSHORTCUT_UNIX_H_
+#define GLOBALSHORTCUT_UNIX_H_
+
#include "GlobalShortcut.h"
#include "ConfigDialog.h"
#include "Global.h"
@@ -71,3 +74,5 @@ class GlobalShortcutX : public GlobalShortcutEngine {
void inputReadyRead(int);
void directoryChanged(const QString &);
};
+
+#endif