blob: 17b9b1ad250c03adc67d07cb0145d6497fb64308 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
|
/*
* prefpanelpasswords.cpp
* SecondLife
*
* Created by RMS on 8/5/08.
*
*/
#include "lluictrlfactory.h"
#include "controllerpasswords.h"
#include "prefpanelpasswords.h"
PasswordsPrefPanel::PasswordsPrefPanel()
: LLPanel(std::string("panel_preferences_passwords"))
{
LLUICtrlFactory::getInstance()->buildPanel(this, "panel_preferences_passwords.xml");
}
PasswordsPrefPanel::~PasswordsPrefPanel()
{
delete mController;
mController = NULL;
}
BOOL PasswordsPrefPanel::postBuild()
{
mController = new PasswordsController(this);
return TRUE;
}
void PasswordsPrefPanel::apply()
{
}
void PasswordsPrefPanel::cancel()
{
}
|