From 250b625dce74506b718f5caf3d1ae9acb84e4bfb Mon Sep 17 00:00:00 2001 From: "Steinar H. Gunderson" Date: Sat, 30 Jul 2016 12:24:19 +0200 Subject: [PATCH] Correct an include guard. --- aboutdialog.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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) -- 2.39.5