]> git.lyx.org Git - features.git/commitdiff
cosmetics; compile fix
authorAndré Pönitz <poenitz@gmx.net>
Thu, 12 Jun 2008 16:46:46 +0000 (16:46 +0000)
committerAndré Pönitz <poenitz@gmx.net>
Thu, 12 Jun 2008 16:46:46 +0000 (16:46 +0000)
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@25239 a592a061-630c-0410-9148-cb99ea01b6c8

src/TocBackend.h
src/frontends/qt4/TocWidget.cpp
src/frontends/qt4/TocWidget.h

index 32e3e02e8e5bd87ec1c0cf7469106f215d2b7698..0e3d4f1f7e6b1e9a9ec5f095b325c0ccbf992608 100644 (file)
@@ -71,10 +71,11 @@ protected:
 
 
 ///
-class Toc : public std::vector<TocItem> {
+class Toc : public std::vector<TocItem>
+{
 public:
        typedef std::vector<TocItem>::const_iterator const_iterator;
-       const_iterator Toc::item(DocIterator const & dit) const;
+       const_iterator item(DocIterator const & dit) const;
 };
 
 typedef Toc::const_iterator TocIterator;
index 05501f16e96ec062c16603f3faf40a59060751c3..eb3fc493314bdcff8b4d1af1fdd177632371a736 100644 (file)
@@ -90,17 +90,18 @@ void TocWidget::on_updateTB_clicked()
        gui_view_.tocModels().updateBackend();
 }
 
+
 /* FIXME (Ugras 17/11/06):
-I have implemented a getIndexDepth function to get the model indices. In my
+I have implemented a indexDepth function to get the model indices. In my
 opinion, somebody should derive a new qvariant class for tocModelItem
-which saves the string data and depth information. that will save the
-depth calculation.
-*/
-int TocWidget::getIndexDepth(QModelIndex const & index, int depth)
+which saves the string data and depth information. That will save the
+depth calculation.  */
+
+static int indexDepth(QModelIndex const & index, int depth = -1)
 {
        ++depth;
-       return (index.parent() == QModelIndex())
-               ? depth : getIndexDepth(index.parent(),depth);
+       return index.parent() == QModelIndex()
+               ? depth : indexDepth(index.parent(), depth);
 }
 
 
@@ -128,7 +129,7 @@ void TocWidget::setTreeDepth(int depth)
        int size = indices.size();
        for (int i = 0; i < size; i++) {
                QModelIndex index = indices[i];
-               tocTV->setExpanded(index, getIndexDepth(index) < depth_);
+               tocTV->setExpanded(index, indexDepth(index) < depth_);
        }
 }
 
index e784a7c5c7af27084ea5874239c3f2a6c89653be..ea145539e98b61ce5928079a9c7cbdad245cb44e 100644 (file)
@@ -61,8 +61,6 @@ private:
        ///
        void enableControls(bool enable = true);
        ///
-       int getIndexDepth(QModelIndex const & index, int depth = -1);
-       ///
        void setTreeDepth(int depth);
        ///
        void outline(int func_code);