Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Tobias Hunger
qt-creator
Commits
d9fbf55a
Commit
d9fbf55a
authored
Jun 16, 2010
by
Tobias Hunger
Browse files
Make Task and TaskWindowPrivate classes
They both used to be structs.
parent
bf5c9902
Changes
3
Hide whitespace changes
Inline
Side-by-side
src/plugins/projectexplorer/task.h
View file @
d9fbf55a
...
...
@@ -39,7 +39,9 @@
namespace
ProjectExplorer
{
// Build issue (warning or error).
struct
PROJECTEXPLORER_EXPORT
Task
{
class
PROJECTEXPLORER_EXPORT
Task
{
public:
enum
TaskType
{
Unknown
,
Error
,
...
...
src/plugins/projectexplorer/taskwindow.cpp
View file @
d9fbf55a
...
...
@@ -478,7 +478,9 @@ bool TaskFilterModel::filterAcceptsRow(int sourceRow, const QModelIndex &sourceP
// TaskWindow
/////
struct
TaskWindowPrivate
{
class
TaskWindowPrivate
{
public:
Internal
::
TaskModel
*
m_model
;
Internal
::
TaskFilterModel
*
m_filter
;
Internal
::
TaskView
*
m_listview
;
...
...
src/plugins/projectexplorer/taskwindow.h
View file @
d9fbf55a
...
...
@@ -42,10 +42,8 @@ class QModelIndex;
QT_END_NAMESPACE
namespace
ProjectExplorer
{
struct
Task
;
struct
TaskWindowPrivate
;
struct
TaskWindowPrivate
;
class
Task
;
class
TaskWindowPrivate
;
// Show build issues (warnings or errors) and open the editor on click.
class
PROJECTEXPLORER_EXPORT
TaskWindow
:
public
Core
::
IOutputPane
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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