Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Open sidebar
Utilities
Konsole
Commits
1ea501da
Commit
1ea501da
authored
Oct 22, 2013
by
Kurt Hindenburg
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
remove include moc from .cpp files - removes build warnings
parent
02e7c390
Changes
39
Hide whitespace changes
Inline
Side-by-side
Showing
39 changed files
with
1 addition
and
63 deletions
+1
-63
src/Application.cpp
src/Application.cpp
+0
-2
src/BookmarkHandler.cpp
src/BookmarkHandler.cpp
+0
-1
src/ColorSchemeEditor.cpp
src/ColorSchemeEditor.cpp
+0
-1
src/EditProfileDialog.cpp
src/EditProfileDialog.cpp
+0
-1
src/Emulation.cpp
src/Emulation.cpp
+0
-2
src/Filter.cpp
src/Filter.cpp
+0
-1
src/HistorySizeDialog.cpp
src/HistorySizeDialog.cpp
+0
-1
src/HistorySizeWidget.cpp
src/HistorySizeWidget.cpp
+0
-1
src/IncrementalSearchBar.cpp
src/IncrementalSearchBar.cpp
+0
-1
src/KeyBindingEditor.cpp
src/KeyBindingEditor.cpp
+0
-2
src/MainWindow.cpp
src/MainWindow.cpp
+0
-2
src/ManageProfilesDialog.cpp
src/ManageProfilesDialog.cpp
+0
-1
src/ProfileList.cpp
src/ProfileList.cpp
+0
-1
src/ProfileManager.cpp
src/ProfileManager.cpp
+0
-2
src/Pty.cpp
src/Pty.cpp
+0
-1
src/ScreenWindow.cpp
src/ScreenWindow.cpp
+0
-1
src/Session.cpp
src/Session.cpp
+0
-2
src/SessionController.cpp
src/SessionController.cpp
+0
-2
src/SessionListModel.cpp
src/SessionListModel.cpp
+0
-1
src/SessionManager.cpp
src/SessionManager.cpp
+0
-3
src/TabTitleFormatButton.cpp
src/TabTitleFormatButton.cpp
+0
-2
src/TerminalDisplay.cpp
src/TerminalDisplay.cpp
+0
-1
src/ViewContainer.cpp
src/ViewContainer.cpp
+0
-1
src/ViewManager.cpp
src/ViewManager.cpp
+0
-2
src/ViewProperties.cpp
src/ViewProperties.cpp
+1
-1
src/ViewSplitter.cpp
src/ViewSplitter.cpp
+0
-1
src/Vt102Emulation.cpp
src/Vt102Emulation.cpp
+0
-2
src/ZModemDialog.cpp
src/ZModemDialog.cpp
+0
-1
src/tests/CharacterColorTest.cpp
src/tests/CharacterColorTest.cpp
+0
-2
src/tests/DBusTest.cpp
src/tests/DBusTest.cpp
+0
-2
src/tests/HistoryTest.cpp
src/tests/HistoryTest.cpp
+0
-2
src/tests/PartManualTest.cpp
src/tests/PartManualTest.cpp
+0
-2
src/tests/PartTest.cpp
src/tests/PartTest.cpp
+0
-2
src/tests/ProfileTest.cpp
src/tests/ProfileTest.cpp
+0
-3
src/tests/PtyTest.cpp
src/tests/PtyTest.cpp
+0
-2
src/tests/SessionTest.cpp
src/tests/SessionTest.cpp
+0
-2
src/tests/ShellCommandTest.cpp
src/tests/ShellCommandTest.cpp
+0
-2
src/tests/TerminalCharacterDecoderTest.cpp
src/tests/TerminalCharacterDecoderTest.cpp
+0
-2
src/tests/TerminalTest.cpp
src/tests/TerminalTest.cpp
+0
-2
No files found.
src/Application.cpp
View file @
1ea501da
...
...
@@ -425,5 +425,3 @@ Profile::Ptr Application::processProfileChangeArgs(KCmdLineArgs* args, Profile::
}
}
#include "Application.moc"
src/BookmarkHandler.cpp
View file @
1ea501da
...
...
@@ -171,4 +171,3 @@ ViewProperties* BookmarkHandler::activeView() const
return
_activeView
;
}
#include "BookmarkHandler.moc"
src/ColorSchemeEditor.cpp
View file @
1ea501da
...
...
@@ -272,4 +272,3 @@ void ColorSchemeEditor::saveColorScheme()
emit
colorSchemeSaveRequested
(
colorScheme
(),
_isNewScheme
);
}
#include "ColorSchemeEditor.moc"
src/EditProfileDialog.cpp
View file @
1ea501da
...
...
@@ -1360,4 +1360,3 @@ QSize ColorSchemeViewDelegate::sizeHint(const QStyleOptionViewItem& option,
return
QSize
(
width
,
static_cast
<
int
>
(
heightForWidth
));
}
#include "EditProfileDialog.moc"
src/Emulation.cpp
View file @
1ea501da
...
...
@@ -368,5 +368,3 @@ QSize Emulation::imageSize() const
return
QSize
(
_currentScreen
->
getColumns
(),
_currentScreen
->
getLines
());
}
#include "Emulation.moc"
src/Filter.cpp
View file @
1ea501da
...
...
@@ -485,4 +485,3 @@ QList<QAction*> UrlFilter::HotSpot::actions()
return
actions
;
}
#include "Filter.moc"
src/HistorySizeDialog.cpp
View file @
1ea501da
...
...
@@ -70,4 +70,3 @@ void HistorySizeDialog::setLineCount(int lines)
_ui
->
historySizeWidget
->
setLineCount
(
lines
);
}
#include "HistorySizeDialog.moc"
src/HistorySizeWidget.cpp
View file @
1ea501da
...
...
@@ -112,4 +112,3 @@ int HistorySizeWidget::lineCount() const
return
_ui
->
historyLineSpinner
->
value
();
}
#include "HistorySizeWidget.moc"
src/IncrementalSearchBar.cpp
View file @
1ea501da
...
...
@@ -283,4 +283,3 @@ const QBitArray IncrementalSearchBar::optionsChecked()
return
options
;
}
#include "IncrementalSearchBar.moc"
src/KeyBindingEditor.cpp
View file @
1ea501da
...
...
@@ -229,5 +229,3 @@ void KeyBindingEditor::setupKeyBindingTable(const KeyboardTranslator* translator
SLOT
(
bindingTableItemChanged
(
QTableWidgetItem
*
)));
}
#include "KeyBindingEditor.moc"
src/MainWindow.cpp
View file @
1ea501da
...
...
@@ -795,5 +795,3 @@ bool MainWindow::focusNextPrevChild(bool)
return
false
;
}
#include "MainWindow.moc"
src/ManageProfilesDialog.cpp
View file @
1ea501da
...
...
@@ -540,4 +540,3 @@ void ShortcutItemDelegate::paint(QPainter* painter, const QStyleOptionViewItem&
QStyledItemDelegate
::
paint
(
painter
,
option
,
index
);
}
#include "ManageProfilesDialog.moc"
src/ProfileList.cpp
View file @
1ea501da
...
...
@@ -168,4 +168,3 @@ QList<QAction*> ProfileList::actions()
return
_group
->
actions
();
}
#include "ProfileList.moc"
src/ProfileManager.cpp
View file @
1ea501da
...
...
@@ -632,5 +632,3 @@ QKeySequence ProfileManager::shortcut(Profile::Ptr profile) const
return
QKeySequence
();
}
#include "ProfileManager.moc"
src/Pty.cpp
View file @
1ea501da
...
...
@@ -300,4 +300,3 @@ void Pty::setupChildProcess()
sigaction
(
signal
,
&
action
,
0
);
}
#include "Pty.moc"
src/ScreenWindow.cpp
View file @
1ea501da
...
...
@@ -318,4 +318,3 @@ void ScreenWindow::notifyOutputChanged()
emit
outputChanged
();
}
#include "ScreenWindow.moc"
src/Session.cpp
View file @
1ea501da
...
...
@@ -1518,5 +1518,3 @@ void SessionGroup::forwardData(const char* data, int size)
_inForwardData
=
false
;
}
#include "Session.moc"
src/SessionController.cpp
View file @
1ea501da
...
...
@@ -1991,5 +1991,3 @@ QString SessionController::userTitle() const
}
}
#include "SessionController.moc"
src/SessionListModel.cpp
View file @
1ea501da
...
...
@@ -141,4 +141,3 @@ QModelIndex SessionListModel::index(int row, int column, const QModelIndex& pare
return
QModelIndex
();
}
#include "SessionListModel.moc"
src/SessionManager.cpp
View file @
1ea501da
...
...
@@ -330,6 +330,3 @@ Session* SessionManager::idToSession(int id)
return
0
;
}
#include "SessionManager.moc"
src/TabTitleFormatButton.cpp
View file @
1ea501da
...
...
@@ -104,5 +104,3 @@ Session::TabTitleContext TabTitleFormatButton::context() const
return
_context
;
}
#include "TabTitleFormatButton.moc"
src/TerminalDisplay.cpp
View file @
1ea501da
...
...
@@ -3255,4 +3255,3 @@ bool AutoScrollHandler::eventFilter(QObject* watched, QEvent* event)
return
false
;
}
#include "TerminalDisplay.moc"
src/ViewContainer.cpp
View file @
1ea501da
...
...
@@ -762,4 +762,3 @@ void StackedViewContainer::removeViewWidget(QWidget* view)
_stackWidget
->
removeWidget
(
view
);
}
#include "ViewContainer.moc"
src/ViewManager.cpp
View file @
1ea501da
...
...
@@ -1135,5 +1135,3 @@ void ViewManager::setNavigationBehavior(int behavior)
_newTabBehavior
=
static_cast
<
NewTabBehavior
>
(
behavior
);
}
#include "ViewManager.moc"
src/ViewProperties.cpp
View file @
1ea501da
...
...
@@ -94,4 +94,4 @@ int ViewProperties::identifier() const
{
return
_id
;
}
#include "ViewProperties.moc"
src/ViewSplitter.cpp
View file @
1ea501da
...
...
@@ -257,4 +257,3 @@ ViewContainer* ViewSplitter::activeContainer() const
}
}
#include "ViewSplitter.moc"
src/Vt102Emulation.cpp
View file @
1ea501da
...
...
@@ -1341,5 +1341,3 @@ void Vt102Emulation::reportDecodingError()
kDebug
()
<<
outputError
;
}
#include "Vt102Emulation.moc"
src/ZModemDialog.cpp
View file @
1ea501da
...
...
@@ -67,4 +67,3 @@ void ZModemDialog::slotClose()
accept
();
}
#include "ZModemDialog.moc"
src/tests/CharacterColorTest.cpp
View file @
1ea501da
...
...
@@ -115,5 +115,3 @@ void CharacterColorTest::testColorSpaceSystem()
QTEST_KDEMAIN_CORE
(
CharacterColorTest
)
#include "CharacterColorTest.moc"
src/tests/DBusTest.cpp
View file @
1ea501da
...
...
@@ -240,5 +240,3 @@ void DBusTest::testSessions()
QTEST_MAIN
(
DBusTest
)
#include "DBusTest.moc"
src/tests/HistoryTest.cpp
View file @
1ea501da
...
...
@@ -139,5 +139,3 @@ void HistoryTest::testHistoryScroll()
QTEST_KDEMAIN
(
HistoryTest
,
GUI
)
#include "HistoryTest.moc"
src/tests/PartManualTest.cpp
View file @
1ea501da
...
...
@@ -139,5 +139,3 @@ KParts::Part* PartManualTest::createPart()
QTEST_KDEMAIN
(
PartManualTest
,
GUI
)
#include "PartManualTest.moc"
src/tests/PartTest.cpp
View file @
1ea501da
...
...
@@ -114,5 +114,3 @@ KParts::Part* PartTest::createPart()
QTEST_KDEMAIN
(
PartTest
,
GUI
)
#include "PartTest.moc"
src/tests/ProfileTest.cpp
View file @
1ea501da
...
...
@@ -226,6 +226,3 @@ void ProfileTest::testProfileFileNames()
QTEST_KDEMAIN_CORE
(
ProfileTest
)
#include "ProfileTest.moc"
src/tests/PtyTest.cpp
View file @
1ea501da
...
...
@@ -91,5 +91,3 @@ void PtyTest::testRunProgram()
QTEST_KDEMAIN_CORE
(
PtyTest
)
#include "PtyTest.moc"
src/tests/SessionTest.cpp
View file @
1ea501da
...
...
@@ -58,5 +58,3 @@ void SessionTest::testEmulation()
QTEST_KDEMAIN
(
SessionTest
,
GUI
)
#include "SessionTest.moc"
src/tests/ShellCommandTest.cpp
View file @
1ea501da
...
...
@@ -115,5 +115,3 @@ void ShellCommandTest::testEmptyCommand()
QTEST_KDEMAIN_CORE
(
ShellCommandTest
)
#include "ShellCommandTest.moc"
src/tests/TerminalCharacterDecoderTest.cpp
View file @
1ea501da
...
...
@@ -77,5 +77,3 @@ void TerminalCharacterDecoderTest::testHTMLFileForValidity()
QTEST_KDEMAIN_CORE
(
TerminalCharacterDecoderTest
)
#include "TerminalCharacterDecoderTest.moc"
src/tests/TerminalTest.cpp
View file @
1ea501da
...
...
@@ -109,5 +109,3 @@ void TerminalTest::testSize()
QTEST_KDEMAIN
(
TerminalTest
,
GUI
)
#include "TerminalTest.moc"
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