View | Details | Raw Unified | Return to bug 206650
Collapse All | Expand All

(-)x11/leechcraft/files/patch-plugins_azoth_plugins_otroid_otrhandler.cpp (+11 lines)
Line 0 Link Here
1
--- plugins/azoth/plugins/otroid/otrhandler.cpp.orig	2014-07-28 20:35:44.000000000 +0200
2
+++ plugins/azoth/plugins/otroid/otrhandler.cpp	2016-01-26 13:30:45.499740000 +0100
3
@@ -510,7 +510,7 @@ namespace OTRoid
4
 		auto list = proxy->GetReturnValue ().toList ();
5
 
6
 		const auto& actionsStruct = Entry2Action_.value (entry);
7
-		const auto actions
8
+		const auto actions =
9
 		{
10
 			actionsStruct.ToggleOtr_.get (),
11
 			actionsStruct.ToggleOtrCtx_.get (),
(-)x11/leechcraft/files/patch-util_network_addresses.cpp (+11 lines)
Line 0 Link Here
1
--- util/network/addresses.cpp.orig	2014-07-28 20:35:44.000000000 +0200
2
+++ util/network/addresses.cpp	2016-01-26 12:58:09.726934000 +0100
3
@@ -38,7 +38,7 @@ namespace Util
4
 	AddrList_t GetLocalAddresses (int defaultPort)
5
 	{
6
 		AddrList_t defaultAddrs;
7
-		const auto locals
8
+		const auto locals =
9
 		{
10
 			QHostAddress::parseSubnet ("10.0.0.0/8"),
11
 			QHostAddress::parseSubnet ("172.16.0.0/12"),
(-)x11/leechcraft/files/patch-util_xdg_xdg.cpp (+18 lines)
Line 0 Link Here
1
--- util/xdg/xdg.cpp.orig	2014-07-28 20:35:44.000000000 +0200
2
+++ util/xdg/xdg.cpp	2016-01-26 13:01:00.517701000 +0100
3
@@ -44,13 +44,13 @@ namespace XDG
4
 
5
 	QPixmap GetAppPixmap (const QString& name)
6
 	{
7
-		const auto prefixes
8
+		const auto prefixes =
9
 		{
10
 			"/usr/share/pixmaps/",
11
 			"/usr/local/share/pixmaps/"
12
 		};
13
 
14
-		const auto sizes { "192", "128", "96", "72", "64", "48", "36", "32" };
15
+		const auto sizes = { "192", "128", "96", "72", "64", "48", "36", "32" };
16
 		const QStringList themes
17
 		{
18
 			"/usr/local/share/icons/hicolor/",

Return to bug 206650