From 104d0a1e9c7ae327c0d1bdb630647ed14fd58007 Mon Sep 17 00:00:00 2001
From: jvergara <jvergara@localhost>
Date: Wed, 13 Feb 2008 16:02:58 +0000
Subject: [PATCH] Add a line break to the progress message displayed when we enable the windows service.

---
 opendj-sdk/opends/src/quicksetup/org/opends/quicksetup/installer/Installer.java |    3 ++-
 opendj-sdk/opends/src/messages/messages/quicksetup.properties                   |    2 +-
 2 files changed, 3 insertions(+), 2 deletions(-)

diff --git a/opendj-sdk/opends/src/messages/messages/quicksetup.properties b/opendj-sdk/opends/src/messages/messages/quicksetup.properties
index 37550fd..b341e78 100644
--- a/opendj-sdk/opends/src/messages/messages/quicksetup.properties
+++ b/opendj-sdk/opends/src/messages/messages/quicksetup.properties
@@ -734,7 +734,7 @@
 INFO_PROGRESS_DISABLING_WINDOWS_SERVICE=Disabling Windows Service...
 INFO_PROGRESS_DONE=Done.
 INFO_PROGRESS_DOWNLOADING=Downloading
-INFO_PROGRESS_ENABLING_WINDOWS_SERVICE=Enabling Windows Service...
+INFO_PROGRESS_ENABLING_WINDOWS_SERVICE=Enabling Windows Service
 INFO_PROGRESS_ERROR=Error.
 INFO_PROGRESS_EXTRACTING=Extracting %s
 INFO_PROGRESS_IMPORT_AUTOMATICALLY_GENERATED=Importing \
diff --git a/opendj-sdk/opends/src/quicksetup/org/opends/quicksetup/installer/Installer.java b/opendj-sdk/opends/src/quicksetup/org/opends/quicksetup/installer/Installer.java
index 4f83f92..c645cb6 100644
--- a/opendj-sdk/opends/src/quicksetup/org/opends/quicksetup/installer/Installer.java
+++ b/opendj-sdk/opends/src/quicksetup/org/opends/quicksetup/installer/Installer.java
@@ -1753,10 +1753,11 @@
    * @throws ApplicationException if something goes wrong.
    */
   protected void enableWindowsService() throws ApplicationException {
-      notifyListeners(getFormattedProgress(
+      notifyListeners(getFormattedWithPoints(
         INFO_PROGRESS_ENABLING_WINDOWS_SERVICE.get()));
       InstallerHelper helper = new InstallerHelper();
       helper.enableWindowsService();
+      notifyListeners(getLineBreak());
   }
 
   /**

--
Gitblit v1.10.0