summaryrefslogtreecommitdiff
path: root/common
diff options
context:
space:
mode:
authorleo2003-07-30 17:38:40 +0000
committerleo2003-07-30 17:38:40 +0000
commit2c1d09750a76216c6ccdfc6a250b462a2e5120fc (patch)
treec8bfe313c66f13f71490fdda4da8583190c7b21c /common
parent5e3f2786c19fde0f7a2972364fff3c1b2e23144a (diff)
Fixed console messages.
git-svn-id: http://svn.leocad.org/trunk@345 c7d43263-9d01-0410-8a33-9dba5d9f93d6
Diffstat (limited to 'common')
-rw-r--r--common/project.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/common/project.cpp b/common/project.cpp
index c19290f..29fbede 100644
--- a/common/project.cpp
+++ b/common/project.cpp
@@ -1632,7 +1632,7 @@ bool Project::OnOpenDocument (const char* lpszPathName)
file.Seek(0, SEEK_SET);
mpdfile = false;
datfile = true;
- console.PrintWarning("No files found inside the MPD, trying to load it as a .DAT file.");
+ console.PrintWarning("No files found inside the MPD, trying to load it as a .DAT file.\n");
}
}
@@ -1653,7 +1653,7 @@ bool Project::OnOpenDocument (const char* lpszPathName)
CalculateStep();
UpdateAllViews ();
- console.PrintMisc("%d objects imported.", ok);
+ console.PrintMisc("%d objects imported.\n", ok);
bSuccess = true;
}
else