From 336f3e80dbaf2f648a1a058538b8a8b1062156fa Mon Sep 17 00:00:00 2001 From: Dan Blezek Date: Thu, 11 Jan 2001 11:35:16 -0500 Subject: [PATCH] BUG: Broken on non WIN32 platforms, changed SetEnableOff to EnabledOff --- Source/cmWin32DefinesRule.cxx | 2 +- Source/cmWin32LibrariesRule.cxx | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Source/cmWin32DefinesRule.cxx b/Source/cmWin32DefinesRule.cxx index 8927ff6e4..aa293de97 100644 --- a/Source/cmWin32DefinesRule.cxx +++ b/Source/cmWin32DefinesRule.cxx @@ -5,7 +5,7 @@ cmWin32DefinesRule::cmWin32DefinesRule() { #ifndef _WIN32 - this->SetEnableOff(); + this->EnabledOff(); #endif } diff --git a/Source/cmWin32LibrariesRule.cxx b/Source/cmWin32LibrariesRule.cxx index bb32110b8..117c87ea5 100644 --- a/Source/cmWin32LibrariesRule.cxx +++ b/Source/cmWin32LibrariesRule.cxx @@ -2,7 +2,7 @@ cmWin32LibrariesRule::cmWin32LibrariesRule() { #ifndef _WIN32 - this->SetEnableOff(); + this->EnabledOff(); #endif }