diff options
author | Bent Bisballe Nyeng <deva@aasimon.org> | 2017-04-20 20:16:48 +0200 |
---|---|---|
committer | Bent Bisballe Nyeng <deva@aasimon.org> | 2017-04-20 20:16:48 +0200 |
commit | c73f9e2632f9614bba748aed857e2a648126a963 (patch) | |
tree | 151bffe31dede7b17335004bad8014b3bb5b7837 /plugingui/image.cc | |
parent | 815d4eeae5a10bb1dbdd9e8810523644dfbadc5f (diff) |
Change resource paths to be relative to the plugingui folder instead of the resources folder. Make rcgen run atomatically to re-generate resource_data.cc if one of the resource files changes.
Diffstat (limited to 'plugingui/image.cc')
-rw-r--r-- | plugingui/image.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugingui/image.cc b/plugingui/image.cc index ea295b9..22d1aca 100644 --- a/plugingui/image.cc +++ b/plugingui/image.cc @@ -80,7 +80,7 @@ Image& Image::operator=(Image&& other) void Image::setError() { - Resource rc(":png_error"); + Resource rc(":resources/png_error"); const unsigned char* ptr = (const unsigned char*)rc.data(); |