fix namespace error on Linux (#82)

This commit is contained in:
Altair Wei 2021-09-12 18:18:40 +08:00 committed by GitHub
parent 138a2b90cb
commit 0bfefb25d0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 6 additions and 0 deletions

View File

@ -24,6 +24,10 @@
#include "utilities.h" #include "utilities.h"
#include <QtCore/qvariant.h>
FRAMELESSHELPER_BEGIN_NAMESPACE
static constexpr int kDefaultResizeBorderThickness = 8; static constexpr int kDefaultResizeBorderThickness = 8;
static constexpr int kDefaultCaptionHeight = 23; static constexpr int kDefaultCaptionHeight = 23;
@ -127,3 +131,5 @@ bool Utilities::showSystemMenu(const WId winId, const QPointF &pos)
Q_UNUSED(pos); Q_UNUSED(pos);
return false; return false;
} }
FRAMELESSHELPER_END_NAMESPACE