diff --git a/bazaar/Functions4U_Demo/Functions4U_Demo.upp b/bazaar/Functions4U_Demo/Functions4U_Demo.upp index 361a1db2a..8c3f0418b 100644 --- a/bazaar/Functions4U_Demo/Functions4U_Demo.upp +++ b/bazaar/Functions4U_Demo/Functions4U_Demo.upp @@ -1,3 +1,5 @@ +description "Functions4U demo console\377"; + uses Core, Functions4U; diff --git a/bazaar/Functions4U_Demo/Spreadsheet.cpp b/bazaar/Functions4U_Demo/Spreadsheet.cpp index 09dd179b6..1c3679615 100644 --- a/bazaar/Functions4U_Demo/Spreadsheet.cpp +++ b/bazaar/Functions4U_Demo/Spreadsheet.cpp @@ -6,8 +6,8 @@ using namespace Upp; #include "Spreadsheet.h" -bool SpreadsheetAPI::Open(const char *filename) {return false;}; -void SpreadsheetAPI::SetData(int row, int col, Value val) {}; +bool SpreadsheetAPI::Open(const char *filename) {return false;} +void SpreadsheetAPI::SetData(int row, int col, Value val) {} bool Spreadsheet::Open(const char *filename) {return (static_cast(GetData()))->Open(filename);}