From e702db1d97a941efb77b9086c4cfea06a437c551 Mon Sep 17 00:00:00 2001 From: koldo Date: Fri, 2 Mar 2018 13:50:08 +0000 Subject: [PATCH] Functions4U_Demo: Updated namespaces and time callbacks git-svn-id: svn://ultimatepp.org/upp/trunk@11813 f0d560ea-af0d-0410-9eb7-867de7ffcac7 --- bazaar/Functions4U_Demo/Functions4U_Demo.upp | 2 ++ bazaar/Functions4U_Demo/Spreadsheet.cpp | 4 ++-- 2 files changed, 4 insertions(+), 2 deletions(-) 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);}