-rw-r--r-- | libopie2/opiesecurity/multiauthmainwindow.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libopie2/opiesecurity/multiauthmainwindow.cpp b/libopie2/opiesecurity/multiauthmainwindow.cpp index 8440b87..17e8705 100644 --- a/libopie2/opiesecurity/multiauthmainwindow.cpp +++ b/libopie2/opiesecurity/multiauthmainwindow.cpp | |||
@@ -106,40 +106,40 @@ void MultiauthMainWindow::proceed() { | |||
106 | 106 | ||
107 | if (result == 0) | 107 | if (result == 0) |
108 | { | 108 | { |
109 | // authentication has succeeded, adapt interface then | 109 | // authentication has succeeded, adapt interface then |
110 | message->setText( "<center><h3>" + tr("Congratulations! Your authentication has been successful.") + "</h3></center>" ); | 110 | message->setText( "<center><h3>" + tr("Congratulations! Your authentication has been successful.") + "</h3></center>" ); |
111 | quit->setText("Enter Opie"); | 111 | quit->setText("Enter Opie"); |
112 | if ( quit->isHidden() ) | 112 | if ( quit->isHidden() ) |
113 | { | 113 | { |
114 | // that means we don't allow to bypass, but now we can show and connect this button | 114 | // that means we don't allow to bypass, but now we can show and connect this button |
115 | QObject::connect(quit, SIGNAL(clicked()), this, SLOT(close())); | 115 | QObject::connect(quit, SIGNAL(clicked()), this, SLOT(close())); |
116 | quit->show(); | 116 | quit->show(); |
117 | } else { | 117 | } else { |
118 | if ( message2 != 0 ) message2->hide(); | 118 | if ( message2 != 0 ) message2->hide(); |
119 | } | 119 | } |
120 | } | 120 | } |
121 | else | 121 | else |
122 | { | 122 | { |
123 | // authentication has failed, explain that according to allowBypass | 123 | // authentication has failed, explain that according to allowBypass |
124 | message->setText( "<center><h3>" + tr("You have <b>not</b> succeeded enough authentication steps!") + "</h3></center>" ); | 124 | message->setText( "<center><h3>" + tr("You have <b>not</b> succeeded enough authentication steps!") + "</h3></center>" ); |
125 | proceedButton->show(); | 125 | proceedButton->show(); |
126 | if ( allowBypass == true ) | 126 | if ( allowBypass == true ) |
127 | { | 127 | { |
128 | message2->setText( "<center><p>" + tr("Be careful: if this was not a <b>simulation</b>, you would have to go back through all the steps now.") + "</p></center>" ); | 128 | message2->setText( "<center><p>" + tr("Be careful: if this was not a <b>simulation</b>, you would have to go back through all the steps now.") + "</p></center>" ); |
129 | message2->show(); | 129 | message2->show(); |
130 | } | ||
130 | } | 131 | } |
131 | } | 132 | } |
132 | } | 133 | } |
133 | } | ||
134 | 134 | ||
135 | /** When we don't show explanatory screens and we succeed authentication, | 135 | /** When we don't show explanatory screens and we succeed authentication, |
136 | * as early as during the proceed() call of the constructor, the caller must know | 136 | * as early as during the proceed() call of the constructor, the caller must know |
137 | * (through this function) authentication has already been succeeded.. | 137 | * (through this function) authentication has already been succeeded.. |
138 | * \todo try to avoid this hack? | 138 | * \todo try to avoid this hack? |
139 | */ | 139 | */ |
140 | bool MultiauthMainWindow::isAlreadyDone() { | 140 | bool MultiauthMainWindow::isAlreadyDone() { |
141 | return alreadyDone; | 141 | return alreadyDone; |
142 | } | 142 | } |
143 | 143 | ||
144 | } | 144 | } |
145 | } | 145 | } |