~ubuntu-branches/ubuntu/lucid/skrooge/lucid

« back to all changes in this revision

Viewing changes to skrooge_bookmark/skgbookmarkplugin.cpp

  • Committer: Bazaar Package Importer
  • Author(s): Anthony Mercatante
  • Date: 2009-07-28 15:38:43 UTC
  • mfrom: (1.1.5 upstream)
  • Revision ID: james.westby@ubuntu.com-20090728153843-91b74m0vcam50krt
Tags: 0.2.9-0ubuntu1
* New upstream release
* Added kubuntu_01_cmake_fix.patch:
  Fix FTBFS

Show diffs side-by-side

added added

removed removed

Lines of Context:
100
100
 
101
101
                //Automatic bookmarks creation
102
102
                if (currentBankDocument->getDatabase()!=NULL) {
103
 
                        QString doc_id=currentBankDocument->getParameter("SKG_UNIQUE_ID");
 
103
                        QString doc_id=currentBankDocument->getUniqueIdentifier();
104
104
                        if (docUniqueIdentifier!=doc_id) {
105
105
                                docUniqueIdentifier=doc_id;
106
106
 
140
140
        QString autostart=i18n("autostart");
141
141
        output.push_back(i18n("<p>... some bookmarks can be opened automatically when the skrooge is launched."));
142
142
        output.push_back(i18n("<p>... bookmarks can be reorganized by drag & drop.</p>"));
143
 
        output.push_back(i18n("<p>... a double click on a folder of bookmarks will open all bookmarks under.</p>"));
 
143
        output.push_back(i18n("<p>... a double click on a folder of bookmarks will open all the bookmarks it contains.</p>"));
144
144
        output.push_back(i18n("<p>... you can import standard bookmarks.</p>"));
145
145
        return output;
146
146
}