mirror of
https://github.com/pocoproject/poco.git
synced 2025-10-20 05:49:04 +02:00
Sun CC compilation fixes
This commit is contained in:
@@ -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))
|
||||
{
|
||||
|
Reference in New Issue
Block a user