Code

remove desktop-affine.cpp
[inkscape.git] / src / sp-glyph-kerning.cpp
index bd5340b6b25b7d7bcf08e9a8e86a1008bae4e49c..6d08f212cea1318cb9ad2a6037dc06aadca59072 100644 (file)
@@ -135,7 +135,7 @@ GlyphNames::~GlyphNames(){
     if (this->names) g_free(this->names);
 }
 
-bool GlyphNames::contains(gchar* name){
+bool GlyphNames::contains(const char* name){
     if (!(this->names) || !name) return false;
     std::istringstream is(this->names);
     std::string str;