Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 422613
Collapse All | Expand All

(-)digikam-2.5.0/core/digikam/album/albummanager.h (-1 / +1 lines)
Lines 831-837 Link Here
831
    {
831
    {
832
        foreach(T* t, list)
832
        foreach(T* t, list)
833
        {
833
        {
834
            append(AlbumPointer<T>(t));
834
            this->append(AlbumPointer<T>(t));
835
        }
835
        }
836
        return *this;
836
        return *this;
837
    }
837
    }
(-)digikam-2.5.0/core/libs/database/imagehistory/imagehistorygraph_boost.h (-2 / +2 lines)
Lines 1362-1368 Link Here
1362
            template <typename VertexType, typename GraphType>
1362
            template <typename VertexType, typename GraphType>
1363
            void discover_vertex(VertexType u, const GraphType&) const
1363
            void discover_vertex(VertexType u, const GraphType&) const
1364
            {
1364
            {
1365
                record(u);
1365
                this->record(u);
1366
            }
1366
            }
1367
        };
1367
        };
1368
1368
Lines 1373-1379 Link Here
1373
            template <typename VertexType, typename GraphType>
1373
            template <typename VertexType, typename GraphType>
1374
            void discover_vertex(VertexType u, const GraphType&) const
1374
            void discover_vertex(VertexType u, const GraphType&) const
1375
            {
1375
            {
1376
                record(u);
1376
                this->record(u);
1377
            }
1377
            }
1378
        };
1378
        };
1379
1379
(-)digikam-2.5.0/core/utilities/cameragui/devices/gpcamera.cpp (+1 lines)
Lines 30-35 Link Here
30
extern "C"
30
extern "C"
31
{
31
{
32
#include <utime.h>
32
#include <utime.h>
33
#include <unistd.h>
33
}
34
}
34
35
35
// C++ includes
36
// C++ includes
(-)digikam-2.5.0/extra/kipi-plugins/htmlexport/wizard.cpp (-1 / +1 lines)
Lines 78-84 Link Here
78
public:
78
public:
79
    WizardPage(KAssistantDialog* dialog, const QString& title)
79
    WizardPage(KAssistantDialog* dialog, const QString& title)
80
    : QWidget(dialog) {
80
    : QWidget(dialog) {
81
        setupUi(this);
81
        this->setupUi(this);
82
        layout()->setMargin(0);
82
        layout()->setMargin(0);
83
        mPage = dialog->addPage(this, title);
83
        mPage = dialog->addPage(this, title);
84
    }
84
    }
(-)digikam-2.5.0/extra/kipi-plugins/printimages/wizard/wizard.cpp (-1 / +1 lines)
Lines 88-94 Link Here
88
    WizardPage ( KAssistantDialog* dialog, const QString& title )
88
    WizardPage ( KAssistantDialog* dialog, const QString& title )
89
        : QWidget ( dialog )
89
        : QWidget ( dialog )
90
    {
90
    {
91
        setupUi ( this );
91
        this->setupUi ( this );
92
        layout()->setMargin ( 0 );
92
        layout()->setMargin ( 0 );
93
        mPage = dialog->addPage ( this, title );
93
        mPage = dialog->addPage ( this, title );
94
    }
94
    }

Return to bug 422613