CComponentsWindow: add constructors with parameters for caption and icon

This commit is contained in:
2013-03-14 16:53:38 +01:00
parent 2b41601d11
commit d87d0754e0
2 changed files with 18 additions and 0 deletions

View File

@@ -42,6 +42,22 @@ CComponentsWindow::CComponentsWindow()
initVarWindow();
}
CComponentsWindow::CComponentsWindow(const std::string& caption, const char* iconname)
{
initVarWindow();
ccw_caption = caption;
ccw_icon_name = iconname;
}
CComponentsWindow::CComponentsWindow(neutrino_locale_t locale_caption, const char* iconname)
{
initVarWindow();
ccw_caption = g_Locale->getText(locale_caption);
ccw_icon_name = iconname;
}
CComponentsWindow::~CComponentsWindow()
{
#ifdef DEBUG_CC