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

« back to all changes in this revision

Viewing changes to konqueror/src/konqhistorymodel.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:
244
244
    KonqHistoryProvider *provider = KonqHistoryProvider::self();
245
245
 
246
246
    connect(provider, SIGNAL(cleared()), this, SLOT(clear()));
247
 
    connect(provider, SIGNAL(entryAdded(const KonqHistoryEntry &)),
248
 
            this, SLOT(slotEntryAdded(const KonqHistoryEntry &)));
249
 
    connect(provider, SIGNAL(entryRemoved(const KonqHistoryEntry &)),
250
 
            this, SLOT(slotEntryRemoved(const KonqHistoryEntry &)));
 
247
    connect(provider, SIGNAL(entryAdded(KonqHistoryEntry)),
 
248
            this, SLOT(slotEntryAdded(KonqHistoryEntry)));
 
249
    connect(provider, SIGNAL(entryRemoved(KonqHistoryEntry)),
 
250
            this, SLOT(slotEntryRemoved(KonqHistoryEntry)));
251
251
 
252
252
    KonqHistoryList entries(provider->entries());
253
253