"Implemented" the stddialogs.cpp change on Haiku.

This commit is contained in:
Pietro Gagliardi 2015-11-28 10:55:24 -05:00
parent e6e264408f
commit 81112fe955
1 changed files with 4 additions and 4 deletions

View File

@ -1,24 +1,24 @@
// 26 june 2015 // 26 june 2015
#include "uipriv_haiku.hpp" #include "uipriv_haiku.hpp"
char *uiOpenFile(void) char *uiOpenFile(uiWindow *parent)
{ {
// TODO // TODO
return NULL; return NULL;
} }
char *uiSaveFile(void) char *uiSaveFile(uiWindow *parent)
{ {
// TODO // TODO
return NULL; return NULL;
} }
void uiMsgBox(const char *title, const char *description) void uiMsgBox(uiWindow *parent, const char *title, const char *description)
{ {
// TODO // TODO
} }
void uiMsgBoxError(const char *title, const char *description) void uiMsgBoxError(uiWindow *parent, const char *title, const char *description)
{ {
// TODO // TODO
} }