本文整理汇总了C++中SPDocument::doUnref方法的典型用法代码示例。如果您正苦于以下问题:C++ SPDocument::doUnref方法的具体用法?C++ SPDocument::doUnref怎么用?C++ SPDocument::doUnref使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类SPDocument
的用法示例。
在下文中一共展示了SPDocument::doUnref方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: showSvgFromMemory
bool ImageIcon::showSvgFromMemory(const char *xmlBuffer)
{
if (!xmlBuffer)
return false;
gint len = (gint)strlen(xmlBuffer);
SPDocument *doc = SPDocument::createNewDocFromMem(xmlBuffer, len, 0);
if (!doc) {
g_warning("SVGView: error loading buffer '%s'\n",xmlBuffer);
return false;
}
showSvgDocument(doc);
doc->doUnref();
return true;
}
示例2: showSvgFile
bool ImageIcon::showSvgFile(const Glib::ustring &theFileName)
{
Glib::ustring fileName = theFileName;
fileName = Glib::filename_to_utf8(fileName);
SPDocument *doc = SPDocument::createNewDoc (fileName.c_str(), 0);
if (!doc) {
g_warning("SVGView: error loading document '%s'\n", fileName.c_str());
return false;
}
showSvgDocument(doc);
doc->doUnref();
return true;
}