diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/utils/profile-icon.c | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/src/utils/profile-icon.c b/src/utils/profile-icon.c index 4284a1d..eec4d8e 100644 --- a/src/utils/profile-icon.c +++ b/src/utils/profile-icon.c @@ -30,13 +30,9 @@ #define PROFILE_SVG_WIDTH 16 #define PROFILE_SVG_HEIGHT 16 -#define STRX(S) #S -#define STR(S) STRX(S) static const gchar *profile_svg = - "<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"" - STR(PROFILE_SVG_WIDTH) "\" height=\"" STR(PROFILE_SVG_HEIGHT) - "\" viewBox=\"0, 0, " STR(PROFILE_SVG_WIDTH) ", " - STR(PROFILE_SVG_HEIGHT) "\">\n" + "<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"16\" height=\"16\" " + "viewBox=\"0, 0, 16, 16\">\n" "<rect x=\"1\" y=\"9\" width=\"14\" height=\"7\" " "rx=\"2\" ry=\"2\" fill=\"@COLOR@\" />\n" "<ellipse cx=\"8\" cy=\"11\" rx=\"7\" ry=\"4\" " |