dptr
svn path=/trunk/KDE/kdelibs/; revision=880606
This commit is contained in:
parent
1a86e5cf41
commit
ef3b16f6ea
@ -26,7 +26,8 @@ namespace Plasma
|
||||
{
|
||||
|
||||
ScrollBar::ScrollBar(Qt::Orientation orientation, QGraphicsWidget *parent)
|
||||
: QGraphicsProxyWidget(parent)
|
||||
: QGraphicsProxyWidget(parent),
|
||||
d(0)
|
||||
{
|
||||
QScrollBar *scrollbar = new QScrollBar(orientation);
|
||||
scrollbar->setAttribute(Qt::WA_NoSystemBackground);
|
||||
|
@ -29,6 +29,8 @@
|
||||
namespace Plasma
|
||||
{
|
||||
|
||||
class ScrollBarPrivate;
|
||||
|
||||
/**
|
||||
* @class ScrollBar plasma/widgets/scrollbar.h <Plasma/Widgets/ScrollBar>
|
||||
*
|
||||
@ -117,6 +119,9 @@ public:
|
||||
* @return the native widget wrapped by this ScrollBar
|
||||
*/
|
||||
QScrollBar *nativeWidget() const;
|
||||
|
||||
private:
|
||||
ScrollBarPrivate * const d;
|
||||
};
|
||||
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user