diff options
| author | Peter Penz <[email protected]> | 2012-04-26 23:39:48 +0200 |
|---|---|---|
| committer | Peter Penz <[email protected]> | 2012-04-26 23:41:01 +0200 |
| commit | d1c5dc52a3ac4f83262d00d37a61f6bfb52d5bf4 (patch) | |
| tree | 54a6f8150b290bed57bb5329ca861be7a858ef85 /src/panels/places/placesitemmodel.cpp | |
| parent | 2854a69fcad54d394ebec504af4995dcb5e18ac4 (diff) | |
Places Panel: Provide dialog for editing places
Diffstat (limited to 'src/panels/places/placesitemmodel.cpp')
| -rw-r--r-- | src/panels/places/placesitemmodel.cpp | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/src/panels/places/placesitemmodel.cpp b/src/panels/places/placesitemmodel.cpp index 219c76698..f3162e7b2 100644 --- a/src/panels/places/placesitemmodel.cpp +++ b/src/panels/places/placesitemmodel.cpp @@ -66,6 +66,23 @@ PlacesItemModel::~PlacesItemModel() { } +int PlacesItemModel::hiddenCount() const +{ + return 0; +} + +QAction* PlacesItemModel::ejectAction(int index) const +{ + Q_UNUSED(index); + return 0; +} + +QAction* PlacesItemModel::tearDownAction(int index) const +{ + Q_UNUSED(index); + return 0; +} + void PlacesItemModel::loadBookmarks() { KBookmarkGroup root = m_bookmarkManager->root(); |
