[Vala] fixed



Alexey Lubimov пишет:

Vala cannot initialize struct members?

wrong code:

public struct TreeViewColumnState {
      bool clickable = true;
}


good code:

public struct TreeViewColumnState {
      bool clickable;
}





[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]