From e2fc6dba84400789953bfb403e22fa8e40d7990d Mon Sep 17 00:00:00 2001 From: Adrien Destugues Date: Thu, 19 Aug 2010 14:56:03 +0000 Subject: [PATCH] Remove useless debug output. git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@38264 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- src/apps/terminal/TermApp.cpp | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/apps/terminal/TermApp.cpp b/src/apps/terminal/TermApp.cpp index e312f00e81..cf5859f020 100644 --- a/src/apps/terminal/TermApp.cpp +++ b/src/apps/terminal/TermApp.cpp @@ -266,8 +266,8 @@ TermApp::_GetWindowPositionFile(BFile* file, uint32 openMode) status_t TermApp::_LoadWindowPosition(BRect* frame, uint32* workspaces) { - status_t status = B_ERROR; - BMessage position = BMessage(); + status_t status; + BMessage position; BFile file; status = _GetWindowPositionFile(&file, B_READ_ONLY); @@ -294,7 +294,6 @@ TermApp::_LoadWindowPosition(BRect* frame, uint32* workspaces) else *workspaces = B_CURRENT_WORKSPACE; - printf("loading settings ok\n"); return B_OK; }