]> git.lyx.org Git - lyx.git/blobdiff - src/RowList_fwd.h
* src/LyXAction.C: mark goto-clear-bookmark as working without buffer
[lyx.git] / src / RowList_fwd.h
index 55e22ab1e2ccb1bc92878720c9f79d5c2bc53e8b..168bf6ef709e3441fead0c6c55c9233bae3b206e 100644 (file)
@@ -17,6 +17,9 @@
 #include <vector>
 #include <map>
 
+
+namespace lyx {
+
 /**
  * Each paragraph is broken up into a number of rows on the screen.
  * This is a list of such on-screen rows, ordered from the top row
@@ -24,6 +27,9 @@
  */
 typedef std::vector<Row> RowList;
 ///
-typedef std::map<lyx::size_type, lyx::size_type> RowSignature;
+typedef std::vector<size_type> RowSignature;
+
+
+} // namespace lyx
 
 #endif