diff options
author | Andrei Karas <akaras@inbox.ru> | 2014-03-04 01:05:30 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2014-03-04 01:05:30 +0300 |
commit | bc510019c0e0b9cc14f0c580667b384568177f7a (patch) | |
tree | 84155a845bf5737666737f71713e7fec644d3187 /src/gui/windows/npcpostdialog.cpp | |
parent | 50ccaf404cdbe5b635f003ff209996f9062183d5 (diff) | |
download | plus-bc510019c0e0b9cc14f0c580667b384568177f7a.tar.gz plus-bc510019c0e0b9cc14f0c580667b384568177f7a.tar.bz2 plus-bc510019c0e0b9cc14f0c580667b384568177f7a.tar.xz plus-bc510019c0e0b9cc14f0c580667b384568177f7a.zip |
Merge scrollarea classes into one.
Diffstat (limited to 'src/gui/windows/npcpostdialog.cpp')
-rw-r--r-- | src/gui/windows/npcpostdialog.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gui/windows/npcpostdialog.cpp b/src/gui/windows/npcpostdialog.cpp index 3c63775fe..48324cb40 100644 --- a/src/gui/windows/npcpostdialog.cpp +++ b/src/gui/windows/npcpostdialog.cpp @@ -75,7 +75,7 @@ void NpcPostDialog::postInit() // create scroll box for letter text ScrollArea *const scrollArea = new ScrollArea(this, mText); - scrollArea->setHorizontalScrollPolicy(gcn::ScrollArea::SHOW_NEVER); + scrollArea->setHorizontalScrollPolicy(ScrollArea::SHOW_NEVER); scrollArea->setDimension(Rect( 5, mSender->getHeight() + 5, 380, 140 - (mSender->getHeight() + sendButton->getHeight()))); |