ports/devel/kyra/files/patch-guiExtended_progress.h
Piotr Kubaj 0aa4d822f2 devel/kyra: fix build on non-x86
Fun fact: for some reason base GCC on 12.2-RELEASE on powerpc64 can build this
port without this patch even though __GNUC__ is defined.
2021-10-25 23:28:49 +00:00

20 lines
712 B
C

--- guiExtended/progress.h.orig 2004-11-21 19:28:32 UTC
+++ guiExtended/progress.h
@@ -43,7 +43,7 @@ class KrProgress : public KrWidget (public)
/** if width of the resource is greater then its height then makes
a horizontal, else makes a vertical progress bar
*/
- KrProgress::KrProgress (int width,
+ KrProgress (int width,
int height,
KrRGBA FillColor,
KrRGBA ChangeColor,
@@ -53,7 +53,7 @@ class KrProgress : public KrWidget (public)
/** if width of the resource is greater then its height then makes
a horizontal, else makes a vertical progress bar
*/
- KrProgress::KrProgress (int width,
+ KrProgress (int width,
int height,
const KrScheme& scheme);