]> git.lyx.org Git - lyx.git/blobdiff - src/insets/insetinclude.C
pos=string::npos for regex not found, use handcoded transform in lstring.C, fix the...
[lyx.git] / src / insets / insetinclude.C
index 540552af24fa08c4ee0bd4b27d6febc36aca5a7e..6bccf7dfd3fab885aa1ca31b93e28ffd12edb452 100644 (file)
@@ -452,14 +452,14 @@ int InsetInclude::GetNumberOfLabels() const
 }
 
 
-string InsetInclude::getKeys() const
+string InsetInclude::getKeys(char delim) const
 {
        string lst;
        
        if (loadIfNeeded()) {
                Buffer *tmp = bufferlist.getBuffer(getFileName());
                tmp->setParentName(""); 
-               lst =  tmp->getBibkeyList(',');
+               lst =  tmp->getBibkeyList(delim);
                tmp->setParentName(getMasterFilename());
        }