"Implemented" the stddialogs.cpp change on Haiku.
This commit is contained in:
parent
e6e264408f
commit
81112fe955
|
@ -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
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue