Fixed help handbook sections for Security & Privary -> Crypto. This relates to bug 1850.

pull/2/head
Michele Calgaro 10 years ago
parent 428b3937fd
commit 0a2adc65fa

@ -197,7 +197,11 @@ You can easily manage them from here.</para>
<para>The list box shows which site and personal certificates &tde;
knows about. You can easily manage them from here.</para>
</sect2>
<sect2 id="ssl-signers">
<title>The <guilabel>SSL Signers</guilabel> Tab</title>
<para>We apologize. This section has not been written yet.</para>
</sect2>
</sect1>

@ -1234,6 +1234,25 @@ void KCryptoConfig::save()
emit changed(false);
}
TQString KCryptoConfig::handbookSection() const
{
int index = tabs->currentPageIndex();
if (index == 0)
return "ssl_tab";
else if (index == 1)
return "openssl";
else if (index == 2)
return "your-certificates";
else if (index == 3)
return "authentication";
else if (index == 4)
return "peer-ssl-certificates";
else if (index == 5)
return "ssl-signers";
else
return TQString::null;
}
void KCryptoConfig::defaults()
{
load( true );

@ -226,6 +226,7 @@ public:
void load( bool useDefaults );
void save();
void defaults();
virtual TQString handbookSection() const;
#ifdef HAVE_SSL
bool loadCiphers();

Loading…
Cancel
Save