diff options
author | Michael Nottebrock <lofi@FreeBSD.org> | 2006-01-08 19:32:36 +0000 |
---|---|---|
committer | Michael Nottebrock <lofi@FreeBSD.org> | 2006-01-08 19:32:36 +0000 |
commit | 7710b55bc3f0d213f6344fa1a608919c44a344b5 (patch) | |
tree | 55eace3b8e7907f8b07ed3c7b0695add019fe3b0 /net/kdenetwork4/files | |
parent | 27f7ce2fe2b84f6569fce9b395c31ff011d9ae1a (diff) |
Notes
Diffstat (limited to 'net/kdenetwork4/files')
-rw-r--r-- | net/kdenetwork4/files/patch-kopete_kopete_chatwindow-emoticonselector.cpp | 11 | ||||
-rw-r--r-- | net/kdenetwork4/files/patch-kopete_protocols_jabber_libiris_iris_jabber-s5b.cpp | 21 |
2 files changed, 32 insertions, 0 deletions
diff --git a/net/kdenetwork4/files/patch-kopete_kopete_chatwindow-emoticonselector.cpp b/net/kdenetwork4/files/patch-kopete_kopete_chatwindow-emoticonselector.cpp new file mode 100644 index 000000000000..5320bde22570 --- /dev/null +++ b/net/kdenetwork4/files/patch-kopete_kopete_chatwindow-emoticonselector.cpp @@ -0,0 +1,11 @@ +--- kopete/kopete/chatwindow/emoticonselector.cpp.orig Mon Dec 19 14:52:02 2005 ++++ kopete/kopete/chatwindow/emoticonselector.cpp Mon Dec 19 15:06:05 2005 +@@ -47,7 +47,7 @@ + // Some of the custom icons are rather large + // so lets limit them to a maximum size for this display panel + // +- if (p.width() > 32 or p.height() > 32) ++ if (p.width() > 32 || p.height() > 32) + p.resize(32, 32); + setMinimumSize(p.size()); + } diff --git a/net/kdenetwork4/files/patch-kopete_protocols_jabber_libiris_iris_jabber-s5b.cpp b/net/kdenetwork4/files/patch-kopete_protocols_jabber_libiris_iris_jabber-s5b.cpp new file mode 100644 index 000000000000..7ce6afcfdcae --- /dev/null +++ b/net/kdenetwork4/files/patch-kopete_protocols_jabber_libiris_iris_jabber-s5b.cpp @@ -0,0 +1,21 @@ +--- kopete/protocols/jabber/libiris/iris/jabber/s5b.cpp.orig Tue Dec 20 06:12:48 2005 ++++ kopete/protocols/jabber/libiris/iris/jabber/s5b.cpp Tue Dec 20 06:19:39 2005 +@@ -18,6 +18,8 @@ + * + */ + ++#include <config.h> ++ + #include"s5b.h" + + #include<qtimer.h> +@@ -32,6 +34,9 @@ + #ifdef Q_OS_WIN + # include <windows.h> + #else ++# ifdef HAVE_SYS_TYPES_H ++# include <sys/types.h> ++# endif + # include <netinet/in.h> + #endif + |