summaryrefslogtreecommitdiff
path: root/src/gui/buddywindow.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/gui/buddywindow.cpp')
-rw-r--r--src/gui/buddywindow.cpp11
1 files changed, 6 insertions, 5 deletions
diff --git a/src/gui/buddywindow.cpp b/src/gui/buddywindow.cpp
index e5b0d82f..54652a30 100644
--- a/src/gui/buddywindow.cpp
+++ b/src/gui/buddywindow.cpp
@@ -23,17 +23,17 @@
#include "buddywindow.h"
BuddyWindow::BuddyWindow():
- Window("")
+ Window("Buddys")
{
setContentSize(80,200);
- textlist = new TextBox();
- textlist->setEditable(false);
- scrollArea = new ScrollArea(textlist);
+ listbox = new gcn::ListBox();
+ listbox->setListModel(dynamic_cast<ListModel*>(this));
+ scrollArea = new ScrollArea(listbox);
}
BuddyWindow::~BuddyWindow()
{
- delete textlist;
+ delete listbox;
delete scrollArea;
}
@@ -41,6 +41,7 @@ void BuddyWindow::draw(gcn::Graphics *graphics)
{
// Draw the children
Window::draw(graphics);
+
}
void BuddyWindow::action(const std::string& eventId)