]> git.lyx.org Git - lyx.git/blobdiff - src/buffer_funcs.h
Fix bug 2485 and crash on middle mouse paste on math
[lyx.git] / src / buffer_funcs.h
index 4b8758ce33a65711ff309e1982b2c88093c60d50..d2453780e35eef96dc5db0e21ba6652d2749aeee 100644 (file)
@@ -21,6 +21,7 @@ class Buffer;
 class DocIterator;
 class ErrorList;
 class TeXErrors;
+class ParIterator;
 
 /**
  *  Loads a LyX file \c filename into \c Buffer
@@ -35,7 +36,7 @@ Buffer * newFile(std::string const & filename, std::string const & templatename,
                 bool isNamed = false);
 
 ///return the format of the buffer on a string
-std::string const BufferFormat(Buffer const & buffer);
+std::string const bufferFormat(Buffer const & buffer);
 ///
 void bufferErrors(Buffer const &, TeXErrors const &);
 ///
@@ -48,6 +49,13 @@ int countWords(DocIterator const & from, DocIterator const & to);
 std::string expandLabel(Buffer const & buf, LyXLayout_ptr const & layout,
                        bool appendix);
 
+/// updates current counter and/or label if possible.
+/**
+\retval true if a full updateCounters is required.
+\retval false if a full updateCounters is not required.
+*/
+bool needsUpdateCounters(Buffer const & buf, ParIterator & it);
+
 /// updates all counters
 void updateCounters(Buffer const &);