diff options
author | Adam Tkac <atkac@redhat.com> | 2010-10-01 08:33:29 +0000 |
---|---|---|
committer | Adam Tkac <atkac@redhat.com> | 2010-10-01 08:33:29 +0000 |
commit | bfd66c1e8c526dff1757bf349c9bb4d87906265f (patch) | |
tree | 35bc549a432e2b823e215483e666afb2e832ebbe /win | |
parent | ef5e17fe2f7c0ab7b47aa616960dfa9fffd7425a (diff) | |
download | tigervnc-bfd66c1e8c526dff1757bf349c9bb4d87906265f.tar.gz tigervnc-bfd66c1e8c526dff1757bf349c9bb4d87906265f.zip |
[Development] Move Get{C,S}Security from Security class to separate classes.
git-svn-id: svn://svn.code.sf.net/p/tigervnc/code/trunk@4156 3789f03b-4d11-0410-bbf8-ca57d06f2519
Diffstat (limited to 'win')
-rw-r--r-- | win/vncconfig/Authentication.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/win/vncconfig/Authentication.h b/win/vncconfig/Authentication.h index 90bf08c3..731a1710 100644 --- a/win/vncconfig/Authentication.h +++ b/win/vncconfig/Authentication.h @@ -40,7 +40,7 @@ namespace rfb { AuthenticationPage(const RegKey& rk) : PropSheetPage(GetModuleHandle(0), MAKEINTRESOURCE(IDD_AUTHENTICATION)), regKey(rk) {} void initDialog() { - CharArray sec_types_str(Security::secTypesServer.getData()); + CharArray sec_types_str(SecurityServer::secTypes.getData()); std::list<rdr::U32> sec_types = parseSecTypes(sec_types_str.buf); useNone = useVNC = false; |