~ubuntu-branches/debian/sid/kde-baseapps/sid

« back to all changes in this revision

Viewing changes to konqueror/src/konqextensionmanager.cpp

  • Committer: Package Import Robot
  • Author(s): Modestas Vainius, Eshat Cakar, Pino Toscano
  • Date: 2012-06-09 22:18:08 UTC
  • mfrom: (4.2.1) (6.1.1 experimental)
  • Revision ID: package-import@ubuntu.com-20120609221808-h1l0ekd5qmb8nefr
Tags: 4:4.8.4-1
* New upstream release.

[ Eshat Cakar ]
* Add watch file.
* Bump kde-sc-dev-latest build dependency to version 4:4.8.4.
* Update installed files.

[ Pino Toscano ]
* Move files of the konqueror documentation from kde-baseapps-data to
  konqueror itself.

Show diffs side-by-side

added added

removed removed

Lines of Context:
65
65
    d->pluginSelector = new KPluginSelector(this);
66
66
    setMainWidget(d->pluginSelector);
67
67
    connect(d->pluginSelector, SIGNAL(changed(bool)), this, SLOT(setChanged(bool)));
68
 
    connect(d->pluginSelector, SIGNAL(configCommitted(const QByteArray &)),
69
 
            this, SLOT(reparseConfiguration(const QByteArray &)));
 
68
    connect(d->pluginSelector, SIGNAL(configCommitted(QByteArray)),
 
69
            this, SLOT(reparseConfiguration(QByteArray)));
70
70
 
71
71
    d->mainWindow = mainWindow;
72
72
    d->activePart = activePart;
78
78
        d->pluginSelector->addPlugins(componentData.componentName(), i18n("Extensions"), "Statusbar", componentData.config());
79
79
    }
80
80
 
81
 
    connect( this, SIGNAL( okClicked() ), SLOT( slotOk() ) );
82
 
    connect( this, SIGNAL( applyClicked() ), SLOT( slotApply() ) );
83
 
    connect( this, SIGNAL( defaultClicked() ), SLOT( slotDefault() ) );
84
 
    connect( this, SIGNAL( user1Clicked() ), SLOT( slotUser1() ) );
 
81
    connect( this, SIGNAL(okClicked()), SLOT(slotOk()) );
 
82
    connect( this, SIGNAL(applyClicked()), SLOT(slotApply()) );
 
83
    connect( this, SIGNAL(defaultClicked()), SLOT(slotDefault()) );
 
84
    connect( this, SIGNAL(user1Clicked()), SLOT(slotUser1()) );
85
85
}
86
86
 
87
87
KonqExtensionManager::~KonqExtensionManager()