From 1c52059c242ccb02ad1aae7b5634654dcf730764 Mon Sep 17 00:00:00 2001 From: FF-Ibb-PD Date: Sat, 2 Nov 2019 16:39:11 +0100 Subject: Update test.vala Code doesn't compile, brackets were set in wrong position --- src/pdf-invoice/test.vala | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pdf-invoice/test.vala b/src/pdf-invoice/test.vala index 5eb7f52..8b4404f 100644 --- a/src/pdf-invoice/test.vala +++ b/src/pdf-invoice/test.vala @@ -13,7 +13,7 @@ * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. */ -public static int main(string args[]) { +public static int main(string[] args) { PDFInvoice invoice; try { -- cgit v1.2.3 From aef5eeea295b4ecf3aeab052f19e1a104687a69f Mon Sep 17 00:00:00 2001 From: FF-Ibb-PD Date: Sat, 2 Nov 2019 16:41:39 +0100 Subject: Update test.vala code doesn't compile, brackets were in wrong position --- src/pdf-stock/test.vala | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pdf-stock/test.vala b/src/pdf-stock/test.vala index 92b6232..478863e 100644 --- a/src/pdf-stock/test.vala +++ b/src/pdf-stock/test.vala @@ -13,7 +13,7 @@ * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. */ -public static int main(string args[]) { +public static int main(string[] args) { try { PDFStock stock = Bus.get_proxy_sync(BusType.SYSTEM, "io.mainframe.shopsystem.StockPDF", "/io/mainframe/shopsystem/stockpdf"); var pdfdata = stock.generate(true); -- cgit v1.2.3