From 305511a395ca82c43b4c9192ca8fd15a48fb0472 Mon Sep 17 00:00:00 2001 From: Thilo Graf Date: Sat, 4 Oct 2014 22:28:13 +0200 Subject: [PATCH] CShellWindow: apply clearer enum format declaration --- src/gui/widget/shellwindow.h | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/gui/widget/shellwindow.h b/src/gui/widget/shellwindow.h index a7c05b7fd..f46efa9cd 100644 --- a/src/gui/widget/shellwindow.h +++ b/src/gui/widget/shellwindow.h @@ -36,7 +36,11 @@ class CShellWindow { public: - enum shellwindow_modes { VERBOSE = 1, ACKNOWLEDGE = 2 }; + enum shellwindow_modes + { + VERBOSE = 1, + ACKNOWLEDGE = 2 + }; CShellWindow(const std::string &cmd, const int mode = 0, int *res = NULL); ~CShellWindow(); private: