parent
d2b8d13265
commit
6a776d9b89
@ -0,0 +1,29 @@
|
||||
Index: kdebase/kdesktop/init/My_Documents
|
||||
===================================================================
|
||||
--- kdebase/kdesktop/init/My_Documents (revision 1182807)
|
||||
+++ kdebase/kdesktop/init/My_Documents (revision 1182808)
|
||||
@@ -1,10 +1,6 @@
|
||||
[Desktop Entry]
|
||||
Encoding=UTF-8
|
||||
-Comment=
|
||||
-Comment[en_US]=
|
||||
-Exec=kxdglauncher --xdgname DOCUMENTS
|
||||
Icon=folder_wordprocessing
|
||||
-MimeType=
|
||||
Name=My Documents
|
||||
Name[af]=Dokument Gids
|
||||
Name[ar]=مستنداتي
|
||||
@@ -70,10 +66,12 @@
|
||||
Name[wa]=Ridant documints
|
||||
Name[zh_CN]=文档文件夹
|
||||
Name[zh_TW]=文件目錄
|
||||
+URL=$( kxdglauncher --getpath --xdgname DOCUMENTS )
|
||||
+Type=Link
|
||||
StartupNotify=true
|
||||
+MimeType=
|
||||
Terminal=false
|
||||
TerminalOptions=
|
||||
-Type=Application
|
||||
X-DCOP-ServiceType=
|
||||
X-KDE-SubstituteUID=false
|
||||
X-KDE-Username=
|
@ -0,0 +1,31 @@
|
||||
Index: kdebase/kcontrol/crypto/crypto.cpp
|
||||
===================================================================
|
||||
--- kdebase/kcontrol/crypto/crypto.cpp (revision 1201522)
|
||||
+++ kdebase/kcontrol/crypto/crypto.cpp (revision 1201523)
|
||||
@@ -2321,7 +2321,7 @@
|
||||
unsigned int i;
|
||||
SSL_CTX *ctx;
|
||||
SSL *ssl;
|
||||
-SSL_METHOD *meth;
|
||||
+const SSL_METHOD *meth;
|
||||
|
||||
SSLv2Box->clear();
|
||||
SSLv3Box->clear();
|
||||
@@ -2337,7 +2337,7 @@
|
||||
CipherItem *item;
|
||||
for (i=0; ; i++) {
|
||||
int j, k;
|
||||
- SSL_CIPHER *sc;
|
||||
+ const SSL_CIPHER *sc;
|
||||
sc = (meth->get_cipher)(i);
|
||||
if (!sc)
|
||||
break;
|
||||
@@ -2365,7 +2365,7 @@
|
||||
|
||||
for (i=0; ; i++) {
|
||||
int j, k;
|
||||
- SSL_CIPHER *sc;
|
||||
+ const SSL_CIPHER *sc;
|
||||
sc = (meth->get_cipher)(i);
|
||||
if (!sc)
|
||||
break;
|
@ -0,0 +1,43 @@
|
||||
Index: kdebase/kcontrol/crypto/crypto.cpp
|
||||
===================================================================
|
||||
--- kdebase/kcontrol/crypto/crypto.cpp (revision 1201704)
|
||||
+++ kdebase/kcontrol/crypto/crypto.cpp (revision 1201705)
|
||||
@@ -2316,12 +2316,19 @@
|
||||
|
||||
|
||||
#ifdef HAVE_SSL
|
||||
+
|
||||
+#if OPENSSL_VERSION_NUMBER >= 0x10000000L
|
||||
+#define SSL_CONST const
|
||||
+#else
|
||||
+#define SSL_CONST
|
||||
+#endif
|
||||
+
|
||||
// This gets all the available ciphers from OpenSSL
|
||||
bool KCryptoConfig::loadCiphers() {
|
||||
unsigned int i;
|
||||
SSL_CTX *ctx;
|
||||
SSL *ssl;
|
||||
-const SSL_METHOD *meth;
|
||||
+SSL_CONST SSL_METHOD *meth;
|
||||
|
||||
SSLv2Box->clear();
|
||||
SSLv3Box->clear();
|
||||
@@ -2337,7 +2344,7 @@
|
||||
CipherItem *item;
|
||||
for (i=0; ; i++) {
|
||||
int j, k;
|
||||
- const SSL_CIPHER *sc;
|
||||
+ SSL_CONST SSL_CIPHER *sc;
|
||||
sc = (meth->get_cipher)(i);
|
||||
if (!sc)
|
||||
break;
|
||||
@@ -2365,7 +2372,7 @@
|
||||
|
||||
for (i=0; ; i++) {
|
||||
int j, k;
|
||||
- const SSL_CIPHER *sc;
|
||||
+ SSL_CONST SSL_CIPHER *sc;
|
||||
sc = (meth->get_cipher)(i);
|
||||
if (!sc)
|
||||
break;
|
@ -0,0 +1,13 @@
|
||||
Index: kdebase/kcontrol/randr/krandrbindings.cpp
|
||||
===================================================================
|
||||
--- kdebase/kcontrol/randr/krandrbindings.cpp (revision 1221325)
|
||||
+++ kdebase/kcontrol/randr/krandrbindings.cpp (revision 1221326)
|
||||
@@ -28,7 +28,7 @@
|
||||
|
||||
keys->insert( "Program:krandrtray", i18n("Display Control") );
|
||||
|
||||
- DEF( I18N_NOOP("Switch Displays"), KShortcut::KShortcut(TQString("XF86Display")), KShortcut::KShortcut(TQString("XF86Display")), slotCycleDisplays() );
|
||||
+ DEF( I18N_NOOP("Switch Displays"), KShortcut(TQString("XF86Display")), KShortcut(TQString("XF86Display")), slotCycleDisplays() );
|
||||
|
||||
#undef DEF
|
||||
#undef WIN
|
Loading…
Reference in new issue