]> git.lyx.org Git - features.git/commitdiff
Self-consistent header files.
authorAngus Leeming <leeming@lyx.org>
Tue, 7 Oct 2003 08:16:04 +0000 (08:16 +0000)
committerAngus Leeming <leeming@lyx.org>
Tue, 7 Oct 2003 08:16:04 +0000 (08:16 +0000)
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@7867 a592a061-630c-0410-9148-cb99ea01b6c8

src/WordLangTuple.h
src/frontends/Menubar.h
src/frontends/qt2/QDocument.h
src/frontends/qt2/qlkey.h
src/mathed/math_gridinfo.h

index 69d2f742f372224c4a0f23313d08278fd78a2273..86775431d38bee38dc6fadb53444f17718f0d2bb 100644 (file)
@@ -12,6 +12,9 @@
 #ifndef WORD_LANG_TUPLE_H
 #define WORD_LANG_TUPLE_H
 
+#include <string>
+
+
 /**
  * A word and its given language code ("en_US").
  * This is used for spellchecking.
index b6e3fe4e7992bb9d5e387807ade3e040e6bc438b..2056651a91c70789fb771bb8b1a27c14651dbd43 100644 (file)
@@ -13,6 +13,8 @@
 #ifndef MENUBAR_H
 #define MENUBAR_H
 
+#include <string>
+
 /**
  * The LyX GUI independent menubar class
  * The GUI interface is implemented in the frontends
index 4567612e78e6814b3c05a354c708c1cfc3449812..608a20f24e6de978e0d022c0e9ebc5da47b83434 100644 (file)
@@ -18,6 +18,8 @@
 #include "Qt2BC.h"
 
 #include <boost/scoped_ptr.hpp>
+#include <string>
+
 
 class ControlDocument;
 class QDocumentDialog;
index 1017a12aa7f1bbfb83625c8975259e3e8a23be22..0e93006b95576d22c12a5c5b7edc099de240f3d2 100644 (file)
@@ -13,6 +13,7 @@
 #define QLKEY_H
 
 #include <qnamespace.h>
+#include <string>
 
 
 /**
index 18a2a5d6cc8d1365a34f2a6810d17e3fbd85781e..a33bd1fc83adc1d4786df8861c2bef03a8ccb48c 100644 (file)
 #ifndef MATH_GRIDINFO_H
 #define MATH_GRIDINFO_H
 
+#include <string>
+
 
 struct ColInfo
 {
        ColInfo() : align('c'), rightline(0), leftline(false) {}
        char   align;      // column alignment
-       string width;      // column width
-       string special;    // special column alignment
+       std::string width;      // column width
+       std::string special;    // special column alignment
        int    rightline;  // a line on the right?
        bool   leftline;
 };
@@ -39,7 +41,7 @@ struct CellInfo
           topline(false), bottomline(false)
        {}
 
-       string content;    // cell content
+       std::string content;    // cell content
        int multi;         // multicolumn flag
        char align;        // cell alignment
        bool leftline;     // do we have a line on the left?