From 99bd07ffb65f0517248fe96d3954b9895ff2baf7 Mon Sep 17 00:00:00 2001 From: joostverburg Date: Sat, 29 Dec 2007 23:43:17 +0000 Subject: [PATCH] * include header file content only once * set verbose level git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@5469 212acab6-be3b-0410-9dea-997c60f758d6 --- Contrib/nsDialogs/nsDialogs.nsh | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/Contrib/nsDialogs/nsDialogs.nsh b/Contrib/nsDialogs/nsDialogs.nsh index eeadc09e..624a0fcf 100644 --- a/Contrib/nsDialogs/nsDialogs.nsh +++ b/Contrib/nsDialogs/nsDialogs.nsh @@ -5,6 +5,11 @@ Header file for creating custom installer pages with nsDialogs */ +!ifndef NSDIALOGS_INCLUDED +!define NSDIALOGS_INCLUDED +!verbose push +!verbose 3 + !include LogicLib.nsh !include WinMessages.nsh @@ -553,3 +558,6 @@ Header file for creating custom installer pages with nsDialogs FunctionEnd !macroend + +!verbose pop +!endif