Просмотр исходного кода

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

Dan Blezek 25 лет назад
Родитель
Сommit
336f3e80db
2 измененных файлов с 2 добавлено и 2 удалено
  1. 1 1
      Source/cmWin32DefinesRule.cxx
  2. 1 1
      Source/cmWin32LibrariesRule.cxx

+ 1 - 1
Source/cmWin32DefinesRule.cxx

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

+ 1 - 1
Source/cmWin32LibrariesRule.cxx

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