]> git.lyx.org Git - lyx.git/blobdiff - src/ColorSet.h
de.po
[lyx.git] / src / ColorSet.h
index 2e49d07b6880bb1c33a4f0ee04e621ee9f0083cd..31e93121bf6fc36502eb22292a660f076c888ff5 100644 (file)
@@ -48,22 +48,22 @@ public:
        ///
        ColorSet();
 
-       /** set the given LyX color to the color defined by the X11 name given
+       /** set the given LyX color to the color defined by the X11 hex name given
         *  \returns true if successful.
         */
-       bool setColor(ColorCode col, std::string const & x11name);
+       bool setColor(ColorCode col, std::string const & x11hexname);
 
        /** set the given LyX color to the color defined by the X11
-        *  name given \returns true if successful. A new color entry
+        *  hex name given \returns true if successful. A new color entry
         *  is created if the color is unknown
         */
-       bool setColor(std::string const & lyxname, std::string const & x11name);
+       bool setColor(std::string const & lyxname, std::string const & x11hexname);
 
        /// Get the GUI name of \c color.
        docstring const getGUIName(ColorCode c) const;
 
-       /// Get the X11 name of \c color.
-       std::string const getX11Name(ColorCode c) const;
+       /// Get the X11 hexname of \c color.
+       std::string const getX11HexName(ColorCode c) const;
 
        /// Get the LaTeX name of \c color.
        std::string const getLaTeXName(ColorCode c) const;
@@ -87,7 +87,7 @@ private:
                /// the name used in LaTeX
                std::string latexname;
                /// the name for X11
-               std::string x11name;
+               std::string x11hexname;
                /// the name for LyX
                std::string lyxname;
        };