- remove some rather superfluous dptr methods
- whitespace fixes svn path=/trunk/KDE/kdebase/workspace/libs/plasma/; revision=717943
This commit is contained in:
parent
ff5b3b72db
commit
c58c19816f
@ -31,42 +31,49 @@ class AppletBrowser::Private
|
|||||||
public:
|
public:
|
||||||
Private(AppletBrowser *parent, Corona *corona)
|
Private(AppletBrowser *parent, Corona *corona)
|
||||||
: q(parent), window(new AppletBrowserWindow(corona))
|
: q(parent), window(new AppletBrowserWindow(corona))
|
||||||
{};
|
{}
|
||||||
|
|
||||||
Private(AppletBrowser *parent, Containment *containment)
|
Private(AppletBrowser *parent, Containment *containment)
|
||||||
: q(parent), window(new AppletBrowserWindow(containment))
|
: q(parent), window(new AppletBrowserWindow(containment))
|
||||||
{};
|
{}
|
||||||
|
|
||||||
~Private() {
|
~Private()
|
||||||
|
{
|
||||||
delete window;
|
delete window;
|
||||||
}
|
}
|
||||||
|
|
||||||
void show() { if (window) window->show(); };
|
|
||||||
void hide() { if (window) window->hide(); };
|
|
||||||
|
|
||||||
AppletBrowser *q;
|
AppletBrowser *q;
|
||||||
AppletBrowserWindow *window;
|
AppletBrowserWindow *window;
|
||||||
};
|
};
|
||||||
|
|
||||||
AppletBrowser::AppletBrowser(Corona * corona)
|
AppletBrowser::AppletBrowser(Corona * corona)
|
||||||
: d(new Private(this, corona))
|
: d(new Private(this, corona))
|
||||||
{}
|
{
|
||||||
|
}
|
||||||
|
|
||||||
AppletBrowser::AppletBrowser(Containment * containment)
|
AppletBrowser::AppletBrowser(Containment * containment)
|
||||||
: d(new Private(this, containment))
|
: d(new Private(this, containment))
|
||||||
{}
|
{
|
||||||
|
}
|
||||||
|
|
||||||
AppletBrowser::~AppletBrowser() {
|
AppletBrowser::~AppletBrowser()
|
||||||
|
{
|
||||||
delete d;
|
delete d;
|
||||||
}
|
}
|
||||||
|
|
||||||
void AppletBrowser::show() {
|
void AppletBrowser::show()
|
||||||
|
{
|
||||||
|
if (d->window) {
|
||||||
d->window->show();
|
d->window->show();
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
void AppletBrowser::hide() {
|
void AppletBrowser::hide()
|
||||||
|
{
|
||||||
|
if (d->window) {
|
||||||
d->window->hide();
|
d->window->hide();
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
} // namespace Plasma
|
} // namespace Plasma
|
||||||
|
Loading…
x
Reference in New Issue
Block a user