Skip to content

Commit

Permalink
Cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
skyjake committed Sep 1, 2013
1 parent 91e74e1 commit 6cb0046
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions doomsday/client/src/ui/widgets/sliderwidget.cpp
Expand Up @@ -27,10 +27,13 @@
using namespace de;
using namespace ui;

/**
* Popup for editing the value of a slider.
*/
class ValuePopup : public PopupWidget
{
public:
ValuePopup(SliderWidget &slider) : _slider(slider)
ValuePopup(SliderWidget &slider)
{
setContent(_edit = new LineEditWidget);
//_edit->setEmptyContentHint(tr("Enter value"));
Expand Down Expand Up @@ -59,7 +62,6 @@ class ValuePopup : public PopupWidget
}

private:
SliderWidget &_slider;
LineEditWidget *_edit;
};

Expand Down

0 comments on commit 6cb0046

Please sign in to comment.