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 /plugins
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 'plugins')
-rw-r--r--plugins/manual/manual.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/plugins/manual/manual.h b/plugins/manual/manual.h
index 611abf46d..62b1ced73 100644
--- a/plugins/manual/manual.h
+++ b/plugins/manual/manual.h
@@ -1,5 +1,5 @@
-#ifndef MANUAL_H
-#define MANUAL_H
+#ifndef MANUAL_H_
+#define MANUAL_H_
#include <QDialog>
#include <QGraphicsItem>
@@ -34,4 +34,4 @@ class Manual : public QDialog, public Ui::Manual {
void updateTopAndFront(int orientation, int azimut);
};
-#endif // MANUAL_H
+#endif