]> git.lyx.org Git - lyx.git/blobdiff - src/buffer_funcs.h
hopefully fix tex2lyx linking.
[lyx.git] / src / buffer_funcs.h
index eb2b3d4a684c8963942a190213b14761b48d693f..7ad1b56d07fa3597e0f5fe79f69ae8277254a5c3 100644 (file)
@@ -18,6 +18,9 @@
 #include <string>
 
 
+namespace lyx {
+
+
 class Buffer;
 class DocIterator;
 class ErrorList;
@@ -55,16 +58,19 @@ lyx::docstring expandLabel(Buffer const & buf,
 /**
 A full updateLabels(Buffer const &) will be called if not possible.
 */
-void updateLabels(Buffer const & buf, ParIterator & it);
+void updateLabels(Buffer const & buf, ParIterator & it, bool childonly = false);
 
 /// update labels between "from" and "to" if possible.
 /**
 A full updateLabels(Buffer const &) will be called if not possible.
 */
 void updateLabels(Buffer const & buf,
-       ParIterator & from, ParIterator & to);
+       ParIterator & from, ParIterator & to, bool childonly = false);
 
 /// updates all counters
-void updateLabels(Buffer const &);
+void updateLabels(Buffer const &, bool childonly = false);
+
+
+} // namespace lyx
 
 #endif // BUFFER_FUNCS_H