Added \n to the debug strings, so we get the output

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@13279 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Stefano Ceccherini 2005-06-26 06:26:03 +00:00
parent 18cbc4ff3d
commit 025793417a
1 changed files with 2 additions and 2 deletions

View File

@ -99,11 +99,11 @@ TTimeWindow::InitWindow()
f_TimeSettings = new TSettingsView(bounds); f_TimeSettings = new TSettingsView(bounds);
if (f_BaseView->StartWatchingAll(f_TimeSettings) != B_OK) if (f_BaseView->StartWatchingAll(f_TimeSettings) != B_OK)
printf("StartWatchingAll(TimeSettings) failed!!!"); printf("StartWatchingAll(TimeSettings) failed!!!\n");
f_TimeZones = new TZoneView(bounds); f_TimeZones = new TZoneView(bounds);
if (f_BaseView->StartWatchingAll(f_TimeZones) != B_OK) if (f_BaseView->StartWatchingAll(f_TimeZones) != B_OK)
printf("TimeZones->StartWatchingAll(TimeZone) failed!!!"); printf("TimeZones->StartWatchingAll(TimeZone) failed!!!\n");
// add tabs // add tabs
BTab *tab; BTab *tab;
tab = new BTab(); tab = new BTab();