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
c5df1500
Commit
c5df1500
authored
Apr 16, 2009
by
Oswald Buddenhagen
Browse files
add some missing Q_OBJECTs
parent
6d5eeb7a
Changes
11
Hide whitespace changes
Inline
Side-by-side
src/plugins/cpptools/completionsettingspage.h
View file @
c5df1500
...
...
@@ -43,6 +43,8 @@ class CppCodeCompletion;
class
CompletionSettingsPage
:
public
Core
::
IOptionsPage
{
Q_OBJECT
public:
CompletionSettingsPage
(
CppCodeCompletion
*
completion
);
~
CompletionSettingsPage
();
...
...
src/plugins/debugger/debuggeroutputwindow.cpp
View file @
c5df1500
...
...
@@ -62,6 +62,8 @@ using namespace Debugger::Internal;
class
DebuggerPane
:
public
QPlainTextEdit
{
Q_OBJECT
public:
DebuggerPane
(
QWidget
*
parent
)
:
QPlainTextEdit
(
parent
)
...
...
src/plugins/debugger/disassemblerhandler.cpp
View file @
c5df1500
...
...
@@ -57,6 +57,8 @@ void DisassemblerLine::clear()
/*! A model to represent the stack in a QTreeView. */
class
Debugger
::
Internal
::
DisassemblerModel
:
public
QAbstractTableModel
{
Q_OBJECT
public:
DisassemblerModel
(
QObject
*
parent
);
...
...
@@ -188,3 +190,5 @@ void DisassemblerHandler::setCurrentLine(int line)
{
m_model
->
setCurrentLine
(
line
);
}
#include
"disassemblerhandler.moc"
src/plugins/debugger/moduleshandler.cpp
View file @
c5df1500
...
...
@@ -53,6 +53,8 @@ using namespace Debugger::Internal;
class
Debugger
::
Internal
::
ModulesModel
:
public
QAbstractItemModel
{
Q_OBJECT
public:
ModulesModel
(
ModulesHandler
*
parent
)
:
QAbstractItemModel
(
parent
)
...
...
@@ -167,3 +169,5 @@ QList<Module> ModulesHandler::modules() const
{
return
m_model
->
m_modules
;
}
#include
"moduleshandler.moc"
src/plugins/debugger/sourcefileswindow.cpp
View file @
c5df1500
...
...
@@ -53,6 +53,8 @@ using Debugger::Internal::SourceFilesModel;
class
Debugger
::
Internal
::
SourceFilesModel
:
public
QAbstractItemModel
{
Q_OBJECT
public:
SourceFilesModel
(
QObject
*
parent
=
0
)
:
QAbstractItemModel
(
parent
)
{}
...
...
@@ -229,3 +231,4 @@ void SourceFilesWindow::removeAll()
header
()
->
setResizeMode
(
0
,
QHeaderView
::
ResizeToContents
);
}
#include
"sourcefileswindow.moc"
src/plugins/debugger/stackhandler.h
View file @
c5df1500
...
...
@@ -61,6 +61,8 @@ struct StackFrame
/*! A model to represent the stack in a QTreeView. */
class
StackHandler
:
public
QAbstractTableModel
{
Q_OBJECT
public:
StackHandler
(
QObject
*
parent
=
0
);
...
...
@@ -106,6 +108,8 @@ struct ThreadData
/*! A model to represent the running threads in a QTreeView or ComboBox */
class
ThreadsHandler
:
public
QAbstractTableModel
{
Q_OBJECT
public:
ThreadsHandler
(
QObject
*
parent
=
0
);
...
...
src/plugins/projectexplorer/currentprojectfind.h
View file @
c5df1500
...
...
@@ -45,6 +45,8 @@ namespace Internal {
class
CurrentProjectFind
:
public
TextEditor
::
BaseFileFind
{
Q_OBJECT
public:
CurrentProjectFind
(
ProjectExplorerPlugin
*
plugin
,
Find
::
SearchResultWindow
*
resultWindow
);
...
...
src/plugins/projectexplorer/foldernavigationwidget.h
View file @
c5df1500
...
...
@@ -77,6 +77,7 @@ private:
class
FolderNavigationWidgetFactory
:
public
Core
::
INavigationWidgetFactory
{
Q_OBJECT
public:
FolderNavigationWidgetFactory
();
virtual
~
FolderNavigationWidgetFactory
();
...
...
src/plugins/projectexplorer/projecttreewidget.h
View file @
c5df1500
...
...
@@ -95,6 +95,7 @@ private:
class
ProjectTreeWidgetFactory
:
public
Core
::
INavigationWidgetFactory
{
Q_OBJECT
public:
ProjectTreeWidgetFactory
();
virtual
~
ProjectTreeWidgetFactory
();
...
...
src/plugins/projectexplorer/sessiondialog.cpp
View file @
c5df1500
...
...
@@ -76,6 +76,7 @@ void SessionValidator::fixup(QString &input) const
class
NewSessionInputDialog
:
public
QDialog
{
Q_OBJECT
public:
NewSessionInputDialog
(
QStringList
sessions
);
QString
value
();
...
...
@@ -188,3 +189,5 @@ void SessionDialog::remove()
}
// namespace Internal
}
// namespace ProjectExplorer
#include
"sessiondialog.moc"
src/plugins/quickopen/quickopenfiltersfilter.h
View file @
c5df1500
...
...
@@ -46,6 +46,8 @@ class QuickOpenToolWindow;
*/
class
QuickOpenFiltersFilter
:
public
IQuickOpenFilter
{
Q_OBJECT
public:
QuickOpenFiltersFilter
(
QuickOpenPlugin
*
plugin
,
QuickOpenToolWindow
*
toolWindow
);
...
...
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