author | clem <clem> | 2004-10-07 00:12:55 (UTC) |
---|---|---|
committer | clem <clem> | 2004-10-07 00:12:55 (UTC) |
commit | 08bb0269afae5ad4a23fc5677cdda6554342da5c (patch) (unidiff) | |
tree | 21ddd5f576967ef390c555f6fa26a78a28a6e6c3 | |
parent | d2256c288998704c0b43986865c884070b983d89 (diff) | |
download | opie-08bb0269afae5ad4a23fc5677cdda6554342da5c.zip opie-08bb0269afae5ad4a23fc5677cdda6554342da5c.tar.gz opie-08bb0269afae5ad4a23fc5677cdda6554342da5c.tar.bz2 |
improved class comment
-rw-r--r-- | libopie2/opiesecurity/multiauthpassword.cpp | 11 | ||||
-rw-r--r-- | libopie2/opiesecurity/multiauthpassword.h | 4 |
2 files changed, 7 insertions, 8 deletions
diff --git a/libopie2/opiesecurity/multiauthpassword.cpp b/libopie2/opiesecurity/multiauthpassword.cpp index b793717..42341f7 100644 --- a/libopie2/opiesecurity/multiauthpassword.cpp +++ b/libopie2/opiesecurity/multiauthpassword.cpp | |||
@@ -73,14 +73,13 @@ bool MultiauthPassword::needToAuthenticate(bool at_poweron) | |||
73 | /** | 73 | /** |
74 | * \brief Require user authentication to unlock and continue | 74 | * \brief Require user authentication to unlock and continue |
75 | * | 75 | * |
76 | * This method will check if you require authentication | 76 | * This method will check if you require authentication |
77 | * and then will lock the screen and require a succesfull | 77 | * and then will lock the screen and ask for a successful |
78 | * authentication. | 78 | * authentication (explaining what it does or not, depending |
79 | * Authenticate may enter the event loop and only returns | 79 | * on your local configuration). |
80 | * if the user sucesfully authenticated to the system. | 80 | * It may go into an event loop, but anyhow it will only end |
81 | * | 81 | * when the user has successfully authenticated to the system. |
82 | * @return only if succesfully authenticated | ||
83 | */ | 82 | */ |
84 | void MultiauthPassword::authenticate(bool at_poweron) | 83 | void MultiauthPassword::authenticate(bool at_poweron) |
85 | { | 84 | { |
86 | if ( ! needToAuthenticate(at_poweron) ) | 85 | if ( ! needToAuthenticate(at_poweron) ) |
diff --git a/libopie2/opiesecurity/multiauthpassword.h b/libopie2/opiesecurity/multiauthpassword.h index f43934d..fe276da 100644 --- a/libopie2/opiesecurity/multiauthpassword.h +++ b/libopie2/opiesecurity/multiauthpassword.h | |||
@@ -38,13 +38,13 @@ | |||
38 | namespace Opie { | 38 | namespace Opie { |
39 | namespace Security { | 39 | namespace Security { |
40 | 40 | ||
41 | /** | 41 | /** |
42 | * This is the dropin replacement for libqpes Password class. | 42 | * This is the dropin replacement for the libqpe Password class. |
43 | * If you call authenticate() a widget will cover the whole screen | 43 | * If you call authenticate() a widget will cover the whole screen |
44 | * and only return if the user is able to authenticate with any of the | 44 | * and only return if the user is able to authenticate with any of the |
45 | * configured Authentication Plugins. | 45 | * configured Authentication Plugins. |
46 | * This uses the \sa Opie::Security::MultiauthMainWindow internally. | 46 | * It uses the Opie::Security::MultiauthMainWindow QDialog internally. |
47 | * | 47 | * |
48 | * @author Clement Séveillac, Holger Freyther | 48 | * @author Clement Séveillac, Holger Freyther |
49 | */ | 49 | */ |
50 | class MultiauthPassword { | 50 | class MultiauthPassword { |