Use std::string instead of Glib::ustring for the map-key in rtimage.cc, #4140

This commit is contained in:
heckflosse 2017-10-13 20:53:15 +02:00
parent 2b3dfb3f3c
commit fd0d50fe0d

View File

@ -28,7 +28,7 @@
namespace
{
std::map<Glib::ustring, Glib::RefPtr<Gdk::Pixbuf>> pixbufCache;
std::map<std::string, Glib::RefPtr<Gdk::Pixbuf>> pixbufCache;
}