Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 732818
Collapse All | Expand All

(-)file_not_specified_in_diff (-2 / +2 lines)
Line  Link Here
0
-- a/src/plugins/openfileslist/openfileslistplugin.h
0
++ b/src/plugins/openfileslist/openfileslistplugin.h
Lines 23-29 struct TargetFilesData Link Here
23
    // Functor for the std::set predicate to sort the opened editor files according to their tab order
23
    // Functor for the std::set predicate to sort the opened editor files according to their tab order
24
    struct compareLess
24
    struct compareLess
25
    {
25
    {
26
        bool operator()(const ProjectFile* lhs, const ProjectFile* rhs) { return lhs->editorTabPos < rhs->editorTabPos; }
26
        bool operator()(const ProjectFile* lhs, const ProjectFile* rhs) const { return lhs->editorTabPos < rhs->editorTabPos; }
27
    };
27
    };
28
    typedef std::set<ProjectFile*, compareLess> OpenFilesSet;
28
    typedef std::set<ProjectFile*, compareLess> OpenFilesSet;
29
    ProjectFile* activeFile;
29
    ProjectFile* activeFile;

Return to bug 732818