~ubuntu-branches/ubuntu/trusty/digikam/trusty

« back to all changes in this revision

Viewing changes to core/digikam/items/imagecategorizedview.cpp

  • Committer: Package Import Robot
  • Author(s): Mark Purcell
  • Date: 2012-09-27 21:41:30 UTC
  • mfrom: (1.2.43)
  • mto: This revision was merged to the branch mainline in revision 86.
  • Revision ID: package-import@ubuntu.com-20120927214130-i8v3ufr21nesp29i
Tags: 4:3.0.0~beta1a-1
* New upstream release

* Fix "wrongly conflicts phonon-backend-vlc" dropped (Closes: #688142)
* debian/watch include download.kde.org

* digikam 3.0.0 uses features from unreleased kdegraphics >=4.10 & ships 
a private version of the kdegraphics libs - this is not the Debian way :-(
* Unsatisfactory Conflicts: libkipi8, libkexiv2-10, libkdcraw20, libksane0
* Suspend digikam-dbg >130Mb

Show diffs side-by-side

added added

removed removed

Lines of Context:
6
6
 * Date        : 2009-04-22
7
7
 * Description : Qt item view for images
8
8
 *
9
 
 * Copyright (C) 2009-2011 by Marcel Wiesweg <marcel dot wiesweg at gmx dot de>
 
9
 * Copyright (C) 2009-2012 by Marcel Wiesweg <marcel dot wiesweg at gmx dot de>
10
10
 *
11
11
 * This program is free software; you can redistribute it
12
12
 * and/or modify it under the terms of the GNU General
62
62
{
63
63
public:
64
64
 
65
 
    ImageItemViewToolTip(ImageCategorizedView* view)
 
65
    ImageItemViewToolTip(ImageCategorizedView* const view)
66
66
        : ItemViewToolTip(view)
67
67
    {
68
68
    }
83
83
 
84
84
// -------------------------------------------------------------------------------
85
85
 
86
 
class ImageCategorizedView::ImageCategorizedViewPriv
 
86
class ImageCategorizedView::Private
87
87
{
88
88
public:
89
89
 
90
 
    ImageCategorizedViewPriv() :
 
90
    Private() :
91
91
        model(0),
92
92
        filterModel(0),
93
93
        delegate(0),
113
113
 
114
114
// -------------------------------------------------------------------------------
115
115
 
116
 
ImageCategorizedView::ImageCategorizedView(QWidget* parent)
117
 
    : DCategorizedView(parent), d(new ImageCategorizedViewPriv)
 
116
ImageCategorizedView::ImageCategorizedView(QWidget* const parent)
 
117
    : DCategorizedView(parent), d(new Private)
118
118
{
119
119
    setToolTip(new ImageItemViewToolTip(this));
120
120