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:
parent
b5a20f9d11
commit
b5504a512c
@ -13,6 +13,7 @@
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
|
|
||||||
|
#include "TerminalBuffer.h"
|
||||||
#include "TermView.h"
|
#include "TermView.h"
|
||||||
|
|
||||||
#include <ctype.h>
|
#include <ctype.h>
|
||||||
@ -372,11 +373,6 @@ TermView::Instantiate(BMessage* data)
|
|||||||
{
|
{
|
||||||
if (validate_instantiation(data, "TermView")) {
|
if (validate_instantiation(data, "TermView")) {
|
||||||
TermView *view = new (std::nothrow) TermView(data);
|
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;
|
return view;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -16,7 +16,6 @@
|
|||||||
#include <String.h>
|
#include <String.h>
|
||||||
#include <View.h>
|
#include <View.h>
|
||||||
|
|
||||||
#include "TerminalBuffer.h"
|
|
||||||
#include "TermPos.h"
|
#include "TermPos.h"
|
||||||
|
|
||||||
|
|
||||||
@ -26,7 +25,9 @@ class BScrollBar;
|
|||||||
class BScrollView;
|
class BScrollView;
|
||||||
class BString;
|
class BString;
|
||||||
class BStringView;
|
class BStringView;
|
||||||
|
class BasicTerminalBuffer;
|
||||||
class TermBuffer;
|
class TermBuffer;
|
||||||
|
class TerminalBuffer;
|
||||||
class ResizeWindow;
|
class ResizeWindow;
|
||||||
class Shell;
|
class Shell;
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user