summaryrefslogtreecommitdiff
path: root/protocols/Facebook/src/options.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'protocols/Facebook/src/options.cpp')
-rw-r--r--protocols/Facebook/src/options.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/protocols/Facebook/src/options.cpp b/protocols/Facebook/src/options.cpp
index fa768756d0..114db861d1 100644
--- a/protocols/Facebook/src/options.cpp
+++ b/protocols/Facebook/src/options.cpp
@@ -23,7 +23,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
class CFacebookAccOptsDlg : public CFBDlgBase
{
CCtrlEdit edtGroup;
- CCtrlCheck chkEnableChats, chkHideChats, chkKeepUnread;
+ CCtrlCheck chkEnableChats, chkHideChats, chkKeepUnread, chkLoginInvis;
public:
CFacebookAccOptsDlg(FacebookProto *pThis) :
@@ -31,11 +31,13 @@ public:
edtGroup(this, IDC_GROUP),
chkHideChats(this, IDC_HIDECHATS),
chkKeepUnread(this, IDC_KEEP_UNREAD),
+ chkLoginInvis(this, IDC_INVIS_LOGIN),
chkEnableChats(this, IDC_ENABLECHATS)
{
CreateLink(edtGroup, pThis->m_wszDefaultGroup);
CreateLink(chkHideChats, pThis->m_bHideGroupchats);
CreateLink(chkKeepUnread, pThis->m_bKeepUnread);
+ CreateLink(chkLoginInvis, pThis->m_bLoginInvisible);
CreateLink(chkEnableChats, pThis->m_bUseGroupchats);
}