forked from pool/FreeFileSync
acfcfb4b23
- Add FreeFileSync-disable-in-app-updates.patch to disable the in app standalone updater for the packaged version of FreeFileSync. OBS-URL: https://build.opensuse.org/request/show/946822 OBS-URL: https://build.opensuse.org/package/show/network/FreeFileSync?expand=0&rev=52
12 lines
545 B
Diff
12 lines
545 B
Diff
--- FreeFileSync_11.9_Source_orig/FreeFileSync/Source/base/icon_loader.cpp 2021-04-01 20:49:34.000000000 +0200
|
|
+++ FreeFileSync_11.9_Source/FreeFileSync/Source/base/icon_loader.cpp 2021-05-14 16:26:33.212337647 +0200
|
|
@@ -216,7 +216,7 @@
|
|
//the remaining icon types won't block!
|
|
assert(GDK_IS_PIXBUF(gicon) || G_IS_THEMED_ICON(gicon) || G_IS_EMBLEMED_ICON(gicon));
|
|
|
|
- return FileIconHolder(static_cast<GIcon*>(::g_object_ref(gicon)) /*pass ownership*/, maxSize);
|
|
+ return FileIconHolder(gicon /*pass ownership*/, maxSize);
|
|
|
|
}
|
|
|