From: Steinar H. Gunderson Date: Sat, 30 Jul 2016 10:24:19 +0000 (+0200) Subject: Correct an include guard. X-Git-Tag: 1.3.4~10 X-Git-Url: https://git.sesse.net/?a=commitdiff_plain;h=250b625dce74506b718f5caf3d1ae9acb84e4bfb;p=nageru Correct an include guard. --- diff --git a/aboutdialog.h b/aboutdialog.h index 3bc9ea5..980dc83 100644 --- a/aboutdialog.h +++ b/aboutdialog.h @@ -1,5 +1,5 @@ -#ifndef ABOUTWINDOW_H -#define ABOUTWINDOW_H +#ifndef _ABOUTDIALOG_H +#define _ABOUTDIALOG_H 1 #include #include @@ -23,4 +23,4 @@ private: Ui::AboutDialog *ui; }; -#endif +#endif // !defined(_ABOUTDIALOG_H)