~ubuntu-branches/ubuntu/lucid/kdebase/lucid

« back to all changes in this revision

Viewing changes to apps/keditbookmarks/main.cpp

  • Committer: Bazaar Package Importer
  • Author(s): Jonathan Thomas
  • Date: 2009-12-02 13:28:20 UTC
  • mfrom: (1.1.35 upstream)
  • Revision ID: james.westby@ubuntu.com-20091202132820-yaqzqr7livmarip5
Tags: 4:4.3.80-0ubuntu1
* New upstream release:
  - Drop kubuntu_05_konsole_colour_scheme.diff, applied upstream
  - Drop kubuntu_15-17.diff, applied upstream
  - Bump build-depend versions
  - Add build-depend on shared-desktop-ontologies for nepomuk support
  - Update various .install files

Show diffs side-by-side

added added

removed removed

Lines of Context:
165
165
            QString path = args->getOption(arg2);
166
166
            ImportCommand *importer = ImportCommand::importerFactory(importType);
167
167
            importer->import(path, true);
168
 
            importer->execute();
 
168
            importer->redo();
169
169
            CurrentMgr::self()->managerSave();
170
170
            CurrentMgr::self()->notifyManagers();
171
171
        }
199
199
 
200
200
    if (askUser((gotFilenameArg ? filename : QString()), readonly)) {
201
201
        KEBApp *toplevel = new KEBApp(filename, readonly, address, browser, caption, dbusObjectName);
 
202
        toplevel->setAttribute(Qt::WA_DeleteOnClose);
202
203
        toplevel->show();
203
204
        return app.exec();
204
205
    }