diff options
author | Ken Moore <ken@ixsystems.com> | 2019-01-02 09:31:52 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-01-02 09:31:52 -0500 |
commit | cd407705124fefe2b293120c845319c369929c86 (patch) | |
tree | 635f1cea2c9a39ee7495396a43aa04957dad7f2a /src-qt5/core | |
parent | Merge pull request #644 from maxsteciuk/bugfix/lumina-fm-crash-on-startup (diff) | |
parent | Switches from keeping links in a QHash to a std::vector. This fixes some race... (diff) | |
download | lumina-cd407705124fefe2b293120c845319c369929c86.tar.gz lumina-cd407705124fefe2b293120c845319c369929c86.tar.bz2 lumina-cd407705124fefe2b293120c845319c369929c86.zip |
Merge pull request #642 from stackyjoe/master
Some changes and fixes to LuminaPDF
Diffstat (limited to 'src-qt5/core')
-rw-r--r-- | src-qt5/core/libLumina/LFileInfo.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src-qt5/core/libLumina/LFileInfo.cpp b/src-qt5/core/libLumina/LFileInfo.cpp index 8ca90979..3021d74a 100644 --- a/src-qt5/core/libLumina/LFileInfo.cpp +++ b/src-qt5/core/libLumina/LFileInfo.cpp @@ -267,7 +267,7 @@ bool LFileInfo::canZFSclone(){ return (zfs_perms.contains("clone") || (c_uid==0) ); } -bool LFileInfo::zfsCloneDataset(QString subdir, QString newsubdir){ +bool LFileInfo::zfsCloneDataset([[maybe_unused]] QString subdir, [[maybe_unused]] QString newsubdir){ if(!canZFSclone()){ return false; } return false; |