MarkdownEditor: bug fix about typing markers

This commit is contained in:
Le Tan 2022-09-24 07:20:27 +08:00
parent 66ed2cdda1
commit 749c4006a2
3 changed files with 2 additions and 8 deletions

@ -1 +1 @@
Subproject commit 3843b68cca169ee8ecd56ff2391f81fb5da1b6d0 Subproject commit 398ec0f8523d9c74a44cb746b5a1017741521e48

View File

@ -14,14 +14,8 @@ const QString SingleInstanceGuard::c_serverName = "vnote";
const QChar SingleInstanceGuard::c_stringListSeparator = '>'; const QChar SingleInstanceGuard::c_stringListSeparator = '>';
SingleInstanceGuard::SingleInstanceGuard()
{
qInfo() << "guarding is on";
}
SingleInstanceGuard::~SingleInstanceGuard() SingleInstanceGuard::~SingleInstanceGuard()
{ {
qInfo() << "guarding is off";
exit(); exit();
} }

View File

@ -14,7 +14,7 @@ namespace vnotex
{ {
Q_OBJECT Q_OBJECT
public: public:
SingleInstanceGuard(); SingleInstanceGuard() = default;
~SingleInstanceGuard(); ~SingleInstanceGuard();