]> git.lyx.org Git - lyx.git/blobdiff - src/cursor.C
ws changes only
[lyx.git] / src / cursor.C
index 0e1d34b17e0a2aa05baa043e7a74c8d152148c45..fb07ee137d4007d4700556de7176dcd3f318f3ca 100644 (file)
@@ -23,7 +23,7 @@
 using std::vector;
 
 
-dispatch_result Cursor::dispatch(FuncRequest const &)
+DispatchResult Cursor::dispatch(FuncRequest const &)
 {
        for (int i = data_.size() - 1; i >= 0; --i) {
                lyxerr << "trying to dispatch to " << data_[i].text_ << std::endl;
@@ -38,7 +38,7 @@ void buildCursor(Cursor & cursor, BufferView & bv)
        lyxerr << "\nbuildCursor: " << inset << std::endl;
        if (!inset)
                return;
-       
+
        inset = inset->getLockingInset();
 
        bool ok = false;
@@ -47,7 +47,7 @@ void buildCursor(Cursor & cursor, BufferView & bv)
        for ( ; pit != end && !ok; ++pit) {
                InsetList::iterator     it = pit->insetlist.begin();
                InsetList::iterator     iend = pit->insetlist.end();
-               for ( ; it != iend && !ok; ++it) 
+               for ( ; it != iend && !ok; ++it)
                        if (it->inset == inset || it->inset == inset->owner())
                                ok = true;
        }
@@ -57,7 +57,7 @@ void buildCursor(Cursor & cursor, BufferView & bv)
                return;
        }
 
-       vector<ParagraphList::iterator> pits; 
+       vector<ParagraphList::iterator> pits;
        vector<ParagraphList const *>   plists;
        vector<LyXText *>               texts;
 /*