Skip to content

Commit

Permalink
Fix for Portable::isAbsolutePath
Browse files Browse the repository at this point in the history
  • Loading branch information
doxygen committed Apr 6, 2020
1 parent f4de4cc commit b8f3c3d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/markdown.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -915,7 +915,7 @@ static int processLink(GrowBuf &out,const char *data,int,int size)
if (lp==-1) // link to markdown page
{
out.addStr("@ref ");
if (!(portable_isAbsolutePath(link) || isURL(link)))
if (!(Portable::isAbsolutePath(link) || isURL(link)))
{
QFileInfo forg(link);
if (!(forg.exists() && forg.isReadable()))
Expand Down

0 comments on commit b8f3c3d

Please sign in to comment.