View Issue Details

IDProjectCategoryView StatusLast Update
0001137Ecere SDKcompilerpublic2017-07-13 02:54
Reporterslothtrop Assigned To 
PrioritynormalSeverityminorReproducibilityalways
Status newResolutionopen 
Platformx86_64:windowsOSWindowsOS Version7
Product Version0.44.15 
Summary0001137: warning for incompatible expression
Descriptionvoid type confusion throwing warning for incompatible expression when calling derived-class void function
Steps To Reproduceimport "ecere"

class AddChildDialog : Window
{
   caption = $"Form1";
   background = formColor;
   borderStyle = sizable;
   hasMaximize = true;
   hasMinimize = true;
   hasClose = true;
   clientSize = { 632, 438 };

   void DropBox::editBoxNotifyUpdate(EditBox editBox)
   {
      PrintLn(_class.name);
   }

   DropBox dropBox1
   {
      this, caption = $"dropBox1", tabCycle = false, position = { 152, 128 }, contents = $"", true;
      editBox.NotifyUpdate = AddChildDialog::editBoxNotifyUpdate
   };
}

AddChildDialog dlg {};
TagsNo tags attached.

Activities

There are no notes attached to this issue.

Issue History

Date Modified Username Field Change
2017-07-13 02:54 slothtrop New Issue