Sun CC compilation fixes

This commit is contained in:
Aleksandar Fabijanic
2009-03-30 14:28:46 +00:00
parent 21ca665427
commit 5ba59148d4
34 changed files with 389 additions and 16 deletions

View File

@@ -48,6 +48,12 @@ PasswordField::PasswordField(const std::string& name, const std::type_info& type
}
PasswordField::PasswordField(const char* pName, const std::type_info& type):
TextField(std::string(pName), type, new PasswordFieldCell(this))
{
}
PasswordField::PasswordField(const std::type_info& type):
TextField(type, new PasswordFieldCell(this))
{
@@ -60,6 +66,12 @@ PasswordField::PasswordField(const std::string& name):
}
PasswordField::PasswordField(const char* pName):
TextField(std::string(pName), typeid(PasswordField), new PasswordFieldCell(this))
{
}
PasswordField::PasswordField():
TextField(typeid(PasswordField), new PasswordFieldCell(this))
{