]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/array.h
Hopefully fix the problem with stateText() in lyxfont.C
[lyx.git] / src / mathed / array.h
index 91d362062549e8bd1e8f2e37e4221d7206d27748..32e50c865089933964498888b324dacb9fc40d88 100644 (file)
@@ -39,13 +39,16 @@ public:
        };
 
        ///
+       explicit
        LyxArrayBase(int size = ARRAY_STEP);
        ///
        LyxArrayBase(LyxArrayBase const &);
        ///
        ~LyxArrayBase();
    
-       
+       /// Constructs a new array with dx elements starting at pos 
+       LyxArrayBase & operator= (LyxArrayBase const &); 
+
        ///
        int empty() const { return (last == 0); }
    
@@ -82,9 +85,6 @@ public:
        /// Constructs a new array with dx elements starting at pos 
        byte operator[](const int);
 
-       /// Constructs a new array with dx elements starting at pos 
-       LyxArrayBase & operator= (LyxArrayBase const &); 
-
 protected:
        ///
        void Resize(int newsize);