]> git.lyx.org Git - lyx.git/blobdiff - src/LColor.h
- Link against qt-mt333.lib which is what the current qt3 cvs produces
[lyx.git] / src / LColor.h
index f5fd206601ccbde34fd30c7c82aeaa97ea117301..ab0fdd3a24a7b234419dcf5b8b75e07691361145 100644 (file)
 #include <string>
 
 /**
-  This is a stateless class.
-
-  It has one basic purposes:
-  To serve as a color-namespace container (the Color enum).
-
-
-  */
+ * This is a stateless class.
+ *
+ * It has one basic purposes:
+ * To serve as a color-namespace container (the Color enum).
+ */
 /**
  * \class LColor
  *
@@ -191,7 +189,7 @@ public:
        ///
        ~LColor();
        ///
-       void operator=(LColor const &);
+       LColor & operator=(LColor);
 
        /** set the given LyX color to the color defined by the X11 name given
         *  \returns true if successful.
@@ -224,7 +222,7 @@ private:
        ///
        void addColor(LColor::color c, std::string const & lyxname) const;
        ///
-       struct Pimpl;
+       class Pimpl;
        ///
        boost::scoped_ptr<Pimpl> pimpl_;
 };
@@ -234,15 +232,15 @@ private:
  *  passed as a function argument without having to expose LColor.h.
  */
 class LColor_color {
-        LColor::color val_;
+       LColor::color val_;
 public:
-        /** The default constructor is nasty,
+       /** The default constructor is nasty,
         *  but allows us to use LColor_color in STL containers.
         */
        LColor_color() : val_(static_cast<LColor::color>(-1)) {}
 
        LColor_color(LColor::color val) : val_(val) {}
-        operator LColor::color() const{ return val_; }
+       operator LColor::color() const{ return val_; }
 };