Return B_ERROR in unimplemented methods

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@16486 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Stefano Ceccherini
2006-02-20 22:17:02 +00:00
parent 111b4fbcaf
commit 6b8c9f5708
+4 -2
View File
@@ -170,7 +170,8 @@ status_t
BPrintJob::ConfigJob()
{
// TODO: Implement
return B_OK;
return ConfigPage();
}
@@ -186,7 +187,8 @@ BPrintJob::CancelJob()
status_t
BPrintJob::ConfigPage()
{
return B_OK;
// TODO: Launch config window and get settings from it
return B_ERROR;
}