Home | History | Annotate | Download | only in gtk

Lines Matching refs:markup

43 static void removeMarkupPrefix(String& markup)
46 // The markup prefix is not harmful, but we remove it from the string anyway, so that
48 if (markup.startsWith(gMarkupPrefix))
49 markup.remove(0, gMarkupPrefix.length());
142 String markup(selectionDataToUTF8String(data));
143 removeMarkupPrefix(markup);
144 dataObject->setMarkup(markup);
163 // Some Linux applications refuse to accept pasted markup unless it is
165 CString markup = (gMarkupPrefix + dataObject->markup()).utf8();
167 reinterpret_cast<const guchar*>(markup.data()), markup.length() + 1);
222 String markup(selectionDataToUTF8String(data));
223 removeMarkupPrefix(markup);
224 dataObject->setMarkup(markup);