ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

Help / WLanguage / Errors / WLanguage errors
  • Reason
  • Correction
WINDEV
WindowsLinuxUniversal Windows 10 AppJavaReports and QueriesUser code (UMC)
WEBDEV
WindowsLinuxPHPWEBDEV - Browser code
WINDEV Mobile
AndroidAndroid Widget iPhone/iPadIOS WidgetApple WatchMac CatalystUniversal Windows 10 App
Others
Stored procedures
Error 1014: The access to the member of the class is restricted by a private inheritance
Reason
You are trying to access a member of a class previously derived by private inheritance. This member cannot be accessed from:
  • A code external to the derived class (or external to its own derived classes).
  • A code of the classes derived from the first class derived by a private inheritance.
Correction
Two possibilities:
  • Access this member from a method of the derived class.
  • Transform the private inheritance to public inheritance: the member will be accessible from the code of the derived classes as well as from a code external to the class.
This page is also available for…
Comments
Click [Add] to post a comment

Last update: 05/26/2022

Send a report | Local help