SVN commit 828958 by ahartmetz: Reenable the SSL dialog when clicking on the (recently fixed/reintroduced) shield icon in the URL bar. Reusing the string "SSL" for the name due to string freeze - is there a better way to deal with the freeze? M +4 -0 khtml_part.cpp M +1 -0 khtmlpart_p.h --- trunk/KDE/kdelibs/khtml/khtml_part.cpp #828957:828958 @@ -283,6 +283,10 @@ actionCollection()->addAction( "saveFrame", d->m_paSaveFrame ); connect( d->m_paSaveFrame, SIGNAL( triggered( bool ) ), this, SLOT( slotSaveFrame() ) ); + d->m_paSecurity = new KAction( i18n( "SSL" ), this ); + actionCollection()->addAction( "security", d->m_paSecurity ); + connect( d->m_paSecurity, SIGNAL( triggered( bool ) ), this, SLOT( slotSecurity() ) ); + d->m_paDebugRenderTree = new KAction( i18n( "Print Rendering Tree to STDOUT" ), this ); actionCollection()->addAction( "debugRenderTree", d->m_paDebugRenderTree ); connect( d->m_paDebugRenderTree, SIGNAL( triggered( bool ) ), this, SLOT( slotDebugRenderTree() ) ); --- trunk/KDE/kdelibs/khtml/khtmlpart_p.h #828957:828958 @@ -345,6 +345,7 @@ KAction *m_paSaveBackground; KAction *m_paSaveDocument; KAction *m_paSaveFrame; + KAction *m_paSecurity; KCodecAction *m_paSetEncoding; KSelectAction *m_paUseStylesheet; KSelectAction *m_paIncZoomFactor;