summaryrefslogtreecommitdiff
path: root/lib/resources.cpp
diff options
context:
space:
mode:
authorDaniel Wilhelm <daniel@wili.li>2014-04-18 17:24:59 +0200
committerDaniel Wilhelm <daniel@wili.li>2014-04-18 17:24:59 +0200
commita1c91f4695e208d5a8f80dc37b1818169b7829ff (patch)
tree52f5134376d17c99b6c9e53133a2eb5cf171377c /lib/resources.cpp
parent5.16 (diff)
downloadFreeFileSync-a1c91f4695e208d5a8f80dc37b1818169b7829ff.tar.gz
FreeFileSync-a1c91f4695e208d5a8f80dc37b1818169b7829ff.tar.bz2
FreeFileSync-a1c91f4695e208d5a8f80dc37b1818169b7829ff.zip
5.17
Diffstat (limited to 'lib/resources.cpp')
-rw-r--r--lib/resources.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/resources.cpp b/lib/resources.cpp
index 6f48e2e1..6deaf0ec 100644
--- a/lib/resources.cpp
+++ b/lib/resources.cpp
@@ -69,19 +69,19 @@ GlobalResources::GlobalResources()
else if (name == L"wink.gif")
loadAnimFromZip(resourceFile, aniWink);
else if (name == L"working.gif")
- loadAnimFromZip(resourceFile, aniSync);
+ loadAnimFromZip(resourceFile, aniWorking);
}
}
-#ifdef FFS_WIN
+#ifdef ZEN_WIN
//for compatibility it seems we need to stick with a "real" icon
programIconFFS = wxIcon(L"A_FFS_ICON");
-#elif defined FFS_LINUX
+#elif defined ZEN_LINUX
//attention: make sure to not implicitly call "instance()" again => deadlock on Linux
programIconFFS.CopyFromBitmap(getImage(L"FreeFileSync")); //use big logo bitmap for better quality
-#elif defined FFS_MAC
+#elif defined ZEN_MAC
assert(getImage(L"FreeFileSync").GetWidth () == getImage(L"FreeFileSync").GetHeight() &&
getImage(L"FreeFileSync").GetWidth() % 128 == 0);
//wxWidgets' bitmap to icon conversion on OS X can only deal with very specific sizes
bgstack15