summaryrefslogtreecommitdiff
path: root/modules/VC7ProjectCreator.pm
diff options
context:
space:
mode:
authorelliott_c <ocielliottc@users.noreply.github.com>2003-02-25 14:01:55 +0000
committerelliott_c <ocielliottc@users.noreply.github.com>2003-02-25 14:01:55 +0000
commitf1ea0945205b557d2c96137fd78d433becde88d0 (patch)
treee9f873cb7b287cbf834d473f52bbd2b42370849c /modules/VC7ProjectCreator.pm
parenta03b90a45095961dc802762d80e354a502b969cd (diff)
downloadMPC-f1ea0945205b557d2c96137fd78d433becde88d0.tar.gz
ChangeLogTag: Tue Feb 25 07:56:59 2003 Chad Elliott <elliott_c@ociweb.com>
Diffstat (limited to 'modules/VC7ProjectCreator.pm')
-rw-r--r--modules/VC7ProjectCreator.pm17
1 files changed, 0 insertions, 17 deletions
diff --git a/modules/VC7ProjectCreator.pm b/modules/VC7ProjectCreator.pm
index ae85b933..30191fd7 100644
--- a/modules/VC7ProjectCreator.pm
+++ b/modules/VC7ProjectCreator.pm
@@ -22,23 +22,6 @@ use vars qw(@ISA);
# Subroutine Section
# ************************************************************
-sub translate_value {
- my($self) = shift;
- my($key) = shift;
- my($val) = shift;
-
- if ($key eq 'depends' && $val ne '') {
- my($arr) = $self->create_array($val);
- $val = '';
- foreach my $entry (@$arr) {
- $val .= '"' . $self->project_file_name($entry) . '" ';
- }
- $val =~ s/\s+$//;
- }
- return $val;
-}
-
-
sub specific_lookup {
my($self) = shift;
my($tag) = shift;