summaryrefslogtreecommitdiff
path: root/modules/WinProjectBase.pm
diff options
context:
space:
mode:
authorelliott_c <ocielliottc@users.noreply.github.com>2010-03-22 00:48:10 +0000
committerelliott_c <ocielliottc@users.noreply.github.com>2010-03-22 00:48:10 +0000
commitb47edb0428d6ec22e955e10ba1904cdc5a8c99e6 (patch)
tree65d7ad31f17a12f3f7031b81075df653077d3bb7 /modules/WinProjectBase.pm
parent29be59fa35f3d758213147792e44df60600fecca (diff)
downloadMPC-b47edb0428d6ec22e955e10ba1904cdc5a8c99e6.tar.gz
ChangeLogTag: Mon Mar 22 00:47:56 UTC 2010 Chad Elliott <elliott_c@gateway.2wire.net>
Diffstat (limited to 'modules/WinProjectBase.pm')
-rw-r--r--modules/WinProjectBase.pm18
1 files changed, 4 insertions, 14 deletions
diff --git a/modules/WinProjectBase.pm b/modules/WinProjectBase.pm
index 0ef49418..77a83f8c 100644
--- a/modules/WinProjectBase.pm
+++ b/modules/WinProjectBase.pm
@@ -11,6 +11,10 @@ package WinProjectBase;
# ************************************************************
use strict;
+use WinPropertyBase;
+
+use vars qw(@ISA);
+@ISA = qw(WinPropertyBase);
# ************************************************************
# Data Section
@@ -102,18 +106,4 @@ sub file_sorter {
}
-sub get_properties {
- my $self = shift;
-
- ## Get the base class properties and add the properties that we
- ## support.
- my $props = $self->ProjectCreator::get_properties();
-
- ## All projects that use this base class are for Windows.
- $$props{'windows'} = 1;
-
- return $props;
-}
-
-
1;