Move Themes to vendor folder.

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@23417 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
François Revol
2008-01-11 20:42:27 +00:00
parent 3079b27eb1
commit 48d5931610
37 changed files with 0 additions and 0 deletions
+21
View File
@@ -0,0 +1,21 @@
#include "TextInputAlert.h"
TextInputAlert::TextInputAlert(const char *title,
const char *text,
const char *initial, /* initial input value */
const char *button0Label,
const char *button1Label,
const char *button2Label,
button_width widthStyle,
alert_type type)
: BAlert(title, text, button0Label, button1Label, button2Label, widthStyle, type)
{
}
TextInputAlert::~TextInputAlert()
{
}