From be8c1005d72bf4c4bcd7c54609d0b50a2061a17c Mon Sep 17 00:00:00 2001 From: Armando Rivera Date: Sat, 9 Nov 2013 23:41:02 -0500 Subject: [PATCH] Changed '*' to PTR for FLTK Objects --- fltk/fltkdemo.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/fltk/fltkdemo.cpp b/fltk/fltkdemo.cpp index dac8e94..a2276be 100644 --- a/fltk/fltkdemo.cpp +++ b/fltk/fltkdemo.cpp @@ -5,9 +5,9 @@ MAIN DIM AS INT top = 40; - DIM AS WINDOW *win; - DIM AS INPUT *txtSource, *txtDest; - DIM AS BUTTON *btnSource, *btnDest; + DIM AS WINDOW PTR win; + DIM AS INPUT PTR txtSource, PTR txtDest; + DIM AS BUTTON PTR btnSource, PTR btnDest; win = new WINDOW(690,486,"FLTK Demo"); win->position((Fl::w() - win->w())/2, (Fl::h() - win->h())/2);