Bläddra i källkod

BUG: Broken on non WIN32 platforms, changed SetEnableOff to EnabledOff

Dan Blezek 25 år sedan
förälder
incheckning
336f3e80db
2 ändrade filer med 2 tillägg och 2 borttagningar
  1. 1 1
      Source/cmWin32DefinesRule.cxx
  2. 1 1
      Source/cmWin32LibrariesRule.cxx

+ 1 - 1
Source/cmWin32DefinesRule.cxx

@@ -5,7 +5,7 @@
 cmWin32DefinesRule::cmWin32DefinesRule()
 cmWin32DefinesRule::cmWin32DefinesRule()
 {
 {
 #ifndef _WIN32
 #ifndef _WIN32
-  this->SetEnableOff();
+  this->EnabledOff();
 #endif
 #endif
 }
 }
 
 

+ 1 - 1
Source/cmWin32LibrariesRule.cxx

@@ -2,7 +2,7 @@
 cmWin32LibrariesRule::cmWin32LibrariesRule()
 cmWin32LibrariesRule::cmWin32LibrariesRule()
 {
 {
 #ifndef _WIN32
 #ifndef _WIN32
-  this->SetEnableOff();
+  this->EnabledOff();
 #endif
 #endif
 }
 }