]> git.lyx.org Git - lyx.git/blobdiff - src/support/syscontr.h
Fix small typos
[lyx.git] / src / support / syscontr.h
index 02ae8bdb6f7ab997f7320b7ecfad1c37122bbca7..07437636c3a6187a2d786718bf2736861fb18104 100644 (file)
 class Systemcalls;
 
 ///
-class SystemcallsSingletoncontroller{
+class SystemcallsSingletoncontroller {
 public:
        ///
-       class Startcontroller{
+       class Startcontroller {
        public:
                ///
                Startcontroller();
                ///
                 ~Startcontroller();
                ///
-               static SystemcallsSingletoncontroller *GetController();
+               static SystemcallsSingletoncontroller * getController();
                ///
-                void ReduceRefcount() { refcount--; }
+                void reduceRefcount() { --refcount; }
        private:
                ///
-               static SystemcallsSingletoncontroller *contr;
+               static SystemcallsSingletoncontroller * contr;
                ///
                 static int refcount;
         };
        ///
        ~SystemcallsSingletoncontroller();
        ///
-       void AddCall(Systemcalls const &newcall);
-       ///
-       void Timer();
-       // private: // DEC cxx does not like that (JMarc)
+       void addCall(Systemcalls const & newcall);
        ///
+       void timer();
+       /// private: // DEC cxx does not like that (JMarc)
        SystemcallsSingletoncontroller();
 private:
        ///
        struct ControlledCalls {
                ///
-               Systemcalls *call;
+               Systemcalls * call;
                ///
-               ControlledCalls *next; };
+               ControlledCalls * next; 
+       };
        ///
-       ControlledCalls *SysCalls;
+       ControlledCalls * sysCalls;
 };