mirror of
https://port.numenaute.org/aleajactaest/khanat-opennel-code.git
synced 2024-11-10 01:09:50 +00:00
Fixed: Compilation under OS X
This commit is contained in:
parent
f59390baab
commit
109ac760c1
1 changed files with 2 additions and 2 deletions
|
@ -286,9 +286,9 @@ QString appendLinkExtension(const QString &link)
|
|||
{
|
||||
QString extension;
|
||||
|
||||
#ifdef Q_OS_WIN32
|
||||
#if defined(Q_OS_WIN32)
|
||||
extension = ".lnk";
|
||||
#elif Q_OS_MAC
|
||||
#elif defined(Q_OS_MAC)
|
||||
// TODO
|
||||
#else
|
||||
extension = ".desktop";
|
||||
|
|
Loading…
Reference in a new issue