summaryrefslogtreecommitdiff
path: root/modules/VC6WorkspaceCreator.pm
diff options
context:
space:
mode:
authorelliott_c <ocielliottc@users.noreply.github.com>2007-01-04 16:10:52 +0000
committerelliott_c <ocielliottc@users.noreply.github.com>2007-01-04 16:10:52 +0000
commite8a43ebe9ed95db045672ecbb90baf481893bbb6 (patch)
tree38eb64d608a38797f0cc386994a82b6ef778b77f /modules/VC6WorkspaceCreator.pm
parent183f68b851ad80860ae773cd249e2d218f3bfb9c (diff)
downloadMPC-e8a43ebe9ed95db045672ecbb90baf481893bbb6.tar.gz
ChangeLogTag: Thu Jan 4 16:08:51 UTC 2007 Chad Elliott <elliott_c@ociweb.com>
Diffstat (limited to 'modules/VC6WorkspaceCreator.pm')
-rw-r--r--modules/VC6WorkspaceCreator.pm5
1 files changed, 3 insertions, 2 deletions
diff --git a/modules/VC6WorkspaceCreator.pm b/modules/VC6WorkspaceCreator.pm
index d997188e..3616d9f4 100644
--- a/modules/VC6WorkspaceCreator.pm
+++ b/modules/VC6WorkspaceCreator.pm
@@ -46,7 +46,8 @@ sub pre_workspace {
my($fh) = shift;
my($crlf) = $self->crlf();
- print $fh 'Microsoft Developer Studio Workspace File, Format Version 6.00', $crlf,
+ print $fh 'Microsoft Developer Studio Workspace File, Format Version 6.00', $crlf;
+ $self->print_workspace_comment($fh,
'#', $crlf,
'# $Id$', $crlf,
'#', $crlf,
@@ -54,7 +55,7 @@ sub pre_workspace {
'# this file will be lost the next time it is generated.', $crlf,
'#', $crlf,
'# MPC Command:', $crlf,
- '# ', $self->create_command_line_string($0, @ARGV), $crlf, $crlf;
+ '# ', $self->create_command_line_string($0, @ARGV), $crlf, $crlf);
}