Moved includes from the header to the implementation

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@34213 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Stefano Ceccherini 2009-11-24 19:26:25 +00:00
parent b5a20f9d11
commit b5504a512c
2 changed files with 3 additions and 6 deletions

View File

@ -13,6 +13,7 @@
*/
#include "TerminalBuffer.h"
#include "TermView.h"
#include <ctype.h>
@ -372,11 +373,6 @@ TermView::Instantiate(BMessage* data)
{
if (validate_instantiation(data, "TermView")) {
TermView *view = new (std::nothrow) TermView(data);
/*BScrollView *scrollView = new BScrollView("term_scrollview",
view, B_FOLLOW_ALL, B_WILL_DRAW | B_FRAME_EVENTS, true, true);
view->SetScrollBar(scrollView->ScrollBar(B_VERTICAL));
scrollView->ResizeTo(200, 200);
return scrollView; */
return view;
}

View File

@ -16,7 +16,6 @@
#include <String.h>
#include <View.h>
#include "TerminalBuffer.h"
#include "TermPos.h"
@ -26,7 +25,9 @@ class BScrollBar;
class BScrollView;
class BString;
class BStringView;
class BasicTerminalBuffer;
class TermBuffer;
class TerminalBuffer;
class ResizeWindow;
class Shell;