Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
S
spdlog
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Libraries
spdlog
Commits
96ebef09
Unverified
Commit
96ebef09
authored
Jun 29, 2021
by
Muhammed Galib Uludag
Committed by
GitHub
Jun 29, 2021
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Delete qtextedit_sink_p.h
parent
a19f4bba
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
35 deletions
+0
-35
include/spdlog/sinks/qtextedit_sink_p.h
include/spdlog/sinks/qtextedit_sink_p.h
+0
-35
No files found.
include/spdlog/sinks/qtextedit_sink_p.h
deleted
100644 → 0
View file @
a19f4bba
// Copyright(c) 2015-present, Gabi Melman, mguludag and spdlog contributors.
// Distributed under the MIT License (http://opensource.org/licenses/MIT)
#pragma once
#include <QObject>
#include <QTextEdit>
namespace
_spdlog_p
{
namespace
_sinks_p
{
class
qtextedit_sink_p
:
public
QObject
{
Q_OBJECT
public:
qtextedit_sink_p
(
QTextEdit
*
textedit
=
nullptr
)
{
if
(
textedit
!=
nullptr
)
{
textedit_
=
textedit
;
connect
(
this
,
&
qtextedit_sink_p
::
append_text
,
textedit_
,
&
QTextEdit
::
append
);
}
}
~
qtextedit_sink_p
()
{}
void
append
(
const
std
::
string
&
str
)
{
emit
append_text
(
QString
::
fromStdString
(
str
));
}
signals:
void
append_text
(
const
QString
&
);
private:
QTextEdit
*
textedit_
=
nullptr
;
};
}
// namespace _sinks_p
}
// namespace _spdlog_p
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment