]> git.lyx.org Git - lyx.git/blobdiff - src/paragraph.h
Juergen's compiler warning fixes
[lyx.git] / src / paragraph.h
index 58f25960f6bdd2b7fd77e6e50f4594b1fa490f8c..2a464d6a27ecbc5d5ebfff03886fd04c0b80b7e4 100644 (file)
@@ -133,7 +133,8 @@ public:
        bool Paragraph::emptyTag() const;
 
        /// Get the id of the paragraph, usefull for docbook and linuxdoc
-       std::string getID() const;
+       std::string getID(Buffer const & buf,
+                         OutputParams const & runparams) const;
 
        // Get the first word of a paragraph, return the position where it left
        lyx::pos_type getFirstWord(Buffer const & buf,
@@ -327,19 +328,16 @@ public:
        ///
        bool isHfill(lyx::pos_type pos) const;
        /// hinted by profiler
-       bool isInset(lyx::pos_type pos) const { return getChar(pos) == META_INSET; }
+       bool isInset(lyx::pos_type pos) const { return getChar(pos) == static_cast<value_type>(META_INSET); }
        ///
        bool isNewline(lyx::pos_type pos) const;
        ///
        bool isSeparator(lyx::pos_type pos) const;
        ///
        bool isLineSeparator(lyx::pos_type pos) const;
-       ///
-       bool isKomma(lyx::pos_type pos) const;
-       /// Used by the spellchecker
+       /// True if the character/inset at this point can be part of a word
+       // Note that digits in particular are considered as letters
        bool isLetter(lyx::pos_type pos) const;
-       ///
-       bool isWord(lyx::pos_type pos) const;
 
        /// returns -1 if inset not found
        int getPositionOfInset(InsetBase const * inset) const;