From 7a65a910b77ad191d69881098c47f9b0c852d92e Mon Sep 17 00:00:00 2001 From: root Date: Tue, 13 Aug 2013 01:33:19 -0700 Subject: Tue Aug 13 01:31:08 PDT 2013 --- community/vyqchat/build-fix.patch | 36 ++++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 community/vyqchat/build-fix.patch (limited to 'community/vyqchat/build-fix.patch') diff --git a/community/vyqchat/build-fix.patch b/community/vyqchat/build-fix.patch new file mode 100644 index 000000000..7ad70ab2f --- /dev/null +++ b/community/vyqchat/build-fix.patch @@ -0,0 +1,36 @@ +diff -wbBur vyqchat-0.2.8/src/settings.h vyqchat-0.2.8.my/src/settings.h +--- vyqchat-0.2.8/src/settings.h 2005-07-18 22:54:08.000000000 +0400 ++++ vyqchat-0.2.8.my/src/settings.h 2007-02-21 21:05:11.000000000 +0300 +@@ -88,7 +88,7 @@ + + // + // Get methods +- const UUID& Settings::getUUID() const { return uuid; } ++ const UUID& getUUID() const { return uuid; } + const QString& getIconThemeName() const { return icontheme; } + const QString& getNick() const { return nick; } + char getGender() const { return gender; } +diff -wbBur vyqchat-0.2.8/src/sound.h vyqchat-0.2.8.my/src/sound.h +--- vyqchat-0.2.8/src/sound.h 2005-07-18 22:54:08.000000000 +0400 ++++ vyqchat-0.2.8.my/src/sound.h 2007-02-21 21:04:45.000000000 +0300 +@@ -47,7 +47,7 @@ + bool reload_samples(Settings &settings); + static bool init(Settings *settings); + static void close(); +- static const QString& Sound::error(); ++ static const QString& error(); + static void play(VyEvent evt); + }; + +diff -wbBur vyqchat-0.2.8/src/user.h vyqchat-0.2.8.my/src/user.h +--- vyqchat-0.2.8/src/user.h 2005-07-18 23:03:01.000000000 +0400 ++++ vyqchat-0.2.8.my/src/user.h 2007-02-21 21:04:14.000000000 +0300 +@@ -38,7 +38,7 @@ + } + return false; + } +- bool User::setStatus(char s) { status=s; return true; } ++ bool setStatus(char s) { status=s; return true; } + void setNick(const QString &nick) { setText(nick); } + int incDeadCounter() { if (dcnt<1) dcnt++; return dcnt; } + int decDeadCounter() { return --dcnt; } -- cgit v1.2.3-54-g00ecf