diff options
Diffstat (limited to 'documentation/src')
| -rw-r--r-- | documentation/src/advanced.dox | 4 | ||||
| -rw-r--r-- | documentation/src/basics.dox | 8 |
2 files changed, 6 insertions, 6 deletions
diff --git a/documentation/src/advanced.dox b/documentation/src/advanced.dox index ff595139c..7a249dada 100644 --- a/documentation/src/advanced.dox +++ b/documentation/src/advanced.dox @@ -202,9 +202,9 @@ worker thread to re-use or update \p userdata. \warning The Fl::awake(void* message) call has been deprecated because the API was not -sufficient to ensure the deliver of all message or the order of messages. The +sufficient to ensure the deliver of all message or the order of messages. The cal still exists for back compatibility, but should be repleaced with a call -to Fl::awake(), Fl::awake(handler, user_data), +to Fl::awake(), Fl::awake(handler, user_data), or Fl::awake_once(handler, user_data). \section advanced_multithreading_lockless FLTK multithreaded "lockless programming" diff --git a/documentation/src/basics.dox b/documentation/src/basics.dox index 2218dbb4b..29b4aa442 100644 --- a/documentation/src/basics.dox +++ b/documentation/src/basics.dox @@ -455,20 +455,20 @@ SRCS = CubeMain.cxx CubeView.cxx CubeViewUI.cxx .SUFFIXES: .o .cxx %.o: %.cxx - $(CXX) $(CXXFLAGS) $(DEBUG) -c $< + $(CXX) $(CXXFLAGS) $(DEBUG) -c $< all: $(TARGET) $(TARGET): $(OBJS) - $(LINK) -o $(TARGET) $(OBJS) $(LDSTATIC) + $(LINK) -o $(TARGET) $(OBJS) $(LDSTATIC) CubeMain.o: CubeMain.cxx CubeViewUI.h CubeView.o: CubeView.cxx CubeView.h CubeViewUI.h CubeViewUI.o: CubeViewUI.cxx CubeView.h clean: - rm -f *.o 2> /dev/null - rm -f $(TARGET) 2> /dev/null + rm -f *.o 2> /dev/null + rm -f $(TARGET) 2> /dev/null \endcode |
