~bzoltan/kubuntu-packaging/decouple_cmake_plugin

« back to all changes in this revision

Viewing changes to src/plugins/cppeditor/cpphoverhandler.cpp

  • Committer: Timo Jyrinki
  • Date: 2013-11-15 12:25:23 UTC
  • mfrom: (1.1.28)
  • Revision ID: timo.jyrinki@canonical.com-20131115122523-i2kyamsu4gs2mu1m
New upstream release.

Show diffs side-by-side

added added

removed removed

Lines of Context:
79
79
                setToolTip(cppElement->tooltip);
80
80
            QStringList candidates = cppElement->helpIdCandidates;
81
81
            candidates.removeDuplicates();
82
 
            HelpManager *hm = HelpManager::instance();
83
82
            foreach (const QString &helpId, candidates) {
84
83
                if (helpId.isEmpty())
85
84
                    continue;
86
85
 
87
 
                const QMap<QString, QUrl> helpLinks = hm->linksForIdentifier(helpId);
 
86
                const QMap<QString, QUrl> helpLinks = Core::HelpManager::linksForIdentifier(helpId);
88
87
                if (!helpLinks.isEmpty()) {
89
88
                    setLastHelpItemIdentified(TextEditor::HelpItem(helpId,
90
89
                                                                   cppElement->helpMark,