X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Flyx_gui.h;h=a5ff60abbf2b191a4e2741a203affd6461b31a2e;hb=98c966c64594611e469313314abd1e59524adb4a;hp=98fd4c19e194650284601714e2ce5711fe884a3f;hpb=da003742d9fbc051024e89241d5796e6403aded9;p=lyx.git diff --git a/src/lyx_gui.h b/src/lyx_gui.h index 98fd4c19e1..a5ff60abbf 100644 --- a/src/lyx_gui.h +++ b/src/lyx_gui.h @@ -1,11 +1,11 @@ // -*- C++ -*- /* This file is part of * ====================================================== - * + * * LyX, The Document Processor - * + * * Copyright 1995 Matthias Ettrich - * Copyright 1995-2000 The LyX Team. + * Copyright 1995-2001 The LyX Team. * * ====================================================== */ @@ -28,7 +28,7 @@ class Buffer; have not clearly figured out how this class is going to be, suggestions are welcome. (Lgb) */ -class LyXGUI : public noncopyable { +class LyXGUI : boost::noncopyable { public: /** The only constructor allowed. If gui is false, LyX will operate in non-X mode @@ -36,7 +36,7 @@ public: LyXGUI(LyX * owner, int * argc, char * argv[], bool gui); /// ~LyXGUI(); - + /** This functions starts the ball. For XForms it runs a loop of fl_check_forms(). For QT this will probably be .exec(). @@ -46,19 +46,19 @@ public: main initialization. */ void init(); - + /// Register the buffer with the first found LyXView in lyxViews void regBuf(Buffer *); - + /// Access to (first?) LyXView LyXView * getLyXView() const; - + private: /// void setDefaults(); /// void create_forms(); - + /// The LyX that owns this GUI. LyX * _owner; ///