[prev in list] [next in list] [prev in thread] [next in thread] 

List:       kde-commits
Subject:    [kmplot/frameworks] kmplot: KF5 port: Make use of automoc which saves lots of warnings
From:       Inge Wallin <inge () lysator ! liu ! se>
Date:       2014-11-16 22:18:02
Message-ID: E1Xq88w-0007d1-7E () scm ! kde ! org
[Download RAW message or body]

Git commit b3c589350d8ab7707148079ccaf38d1cf3c53083 by Inge Wallin.
Committed on 15/11/2014 at 03:39.
Pushed by ingwa into branch 'frameworks'.

KF5 port: Make use of automoc which saves lots of warnings

M  +0    -2    kmplot/calculator.cpp
M  +0    -3    kmplot/constants.cpp
M  +0    -2    kmplot/coordsconfigdialog.cpp
M  +0    -4    kmplot/functioneditor.cpp
M  +0    -3    kmplot/functiontools.cpp
M  +0    -3    kmplot/initialconditionseditor.cpp
M  +0    -3    kmplot/kconstanteditor.cpp
M  +0    -2    kmplot/kgradientdialog.cpp
M  +0    -3    kmplot/kmplot.cpp
M  +0    -2    kmplot/kmplotprogress.cpp
M  +0    -2    kmplot/kparametereditor.cpp
M  +0    -2    kmplot/kprinterdlg.cpp
M  +0    -3    kmplot/ksliderwindow.cpp
M  +0    -2    kmplot/maindlg.cpp
M  +0    -2    kmplot/parameteranimator.cpp
M  +0    -2    kmplot/parameterswidget.cpp
M  +0    -3    kmplot/parser.cpp
M  +0    -2    kmplot/plotstylewidget.cpp
M  +0    -2    kmplot/view.cpp

http://commits.kde.org/kmplot/b3c589350d8ab7707148079ccaf38d1cf3c53083

diff --git a/kmplot/calculator.cpp b/kmplot/calculator.cpp
index d48a45c..7662efe 100644
--- a/kmplot/calculator.cpp
+++ b/kmplot/calculator.cpp
@@ -90,5 +90,3 @@ void Calculator::calculate()
 	m_input->edit->selectAll();
 }
 //END class Calculator
-
-#include "calculator.moc"
diff --git a/kmplot/constants.cpp b/kmplot/constants.cpp
index 9446fec..9b98648 100644
--- a/kmplot/constants.cpp
+++ b/kmplot/constants.cpp
@@ -200,6 +200,3 @@ void Constants::save()
 	}
 }
 //END class Constants
-
-#include "constants.moc"
-
diff --git a/kmplot/coordsconfigdialog.cpp b/kmplot/coordsconfigdialog.cpp
index 34c6630..9e7d043 100644
--- a/kmplot/coordsconfigdialog.cpp
+++ b/kmplot/coordsconfigdialog.cpp
@@ -134,5 +134,3 @@ void CoordsConfigDialog::updateXYRange( )
 	configAxesDialog->kcfg_YMin->setText( Settings::yMin() );
 	configAxesDialog->kcfg_YMax->setText( Settings::yMax() );
 }
-
-#include "coordsconfigdialog.moc"
diff --git a/kmplot/functioneditor.cpp b/kmplot/functioneditor.cpp
index 5581939..794c342 100644
--- a/kmplot/functioneditor.cpp
+++ b/kmplot/functioneditor.cpp
@@ -831,7 +831,3 @@ void FunctionListItem::update()
 	setTextColor( f->plotAppearance( Function::Derivative0 ).color );
 }
 //END class FunctionListItem
-
-
-
-#include "functioneditor.moc"
diff --git a/kmplot/functiontools.cpp b/kmplot/functiontools.cpp
index 1c36a86..cd3242b 100644
--- a/kmplot/functiontools.cpp
+++ b/kmplot/functiontools.cpp
@@ -234,6 +234,3 @@ void FunctionTools::calculateArea( const EquationPair & equation \
)  m_widget->rangeResult->setText( i18n("Area is %1", area ) );
 }
 //END class FunctionTools
-
-
-#include "functiontools.moc"
diff --git a/kmplot/initialconditionseditor.cpp b/kmplot/initialconditionseditor.cpp
index 344744d..ab09a53 100644
--- a/kmplot/initialconditionseditor.cpp
+++ b/kmplot/initialconditionseditor.cpp
@@ -330,6 +330,3 @@ void InitialConditionsEditor::remove()
 	emit dataChanged();
 }
 //END class InitialConditionsEditor
-
-
-#include "initialconditionseditor.moc"
diff --git a/kmplot/kconstanteditor.cpp b/kmplot/kconstanteditor.cpp
index 008b39e..922caf8 100644
--- a/kmplot/kconstanteditor.cpp
+++ b/kmplot/kconstanteditor.cpp
@@ -275,6 +275,3 @@ void ConstantValidator::setWorkingName( const QString & name )
 	m_workingName = name;
 }
 //END class ConstantValidator
-
-
-#include "kconstanteditor.moc"
diff --git a/kmplot/kgradientdialog.cpp b/kmplot/kgradientdialog.cpp
index 984aa32..cd41c06 100644
--- a/kmplot/kgradientdialog.cpp
+++ b/kmplot/kgradientdialog.cpp
@@ -547,5 +547,3 @@ void KGradientButton::paintEvent( QPaintEvent * )
 	}
 }
 //END class KGradientButton
-
-#include "kgradientdialog.moc"
diff --git a/kmplot/kmplot.cpp b/kmplot/kmplot.cpp
index 487676b..ad5b68f 100644
--- a/kmplot/kmplot.cpp
+++ b/kmplot/kmplot.cpp
@@ -272,6 +272,3 @@ void KmPlot::cancelDraw()
 {
 	QDBusInterface( QDBusConnection::sessionBus().baseService(), "/kmplot", \
"org.kde.kmplot.KmPlot" ).call( QDBus::NoBlock, "stopDrawing" );  }
-
-
-#include "kmplot.moc"
diff --git a/kmplot/kmplotprogress.cpp b/kmplot/kmplotprogress.cpp
index 508ae43..30221cd 100644
--- a/kmplot/kmplotprogress.cpp
+++ b/kmplot/kmplotprogress.cpp
@@ -88,5 +88,3 @@ void KmPlotProgress::setProgress( double progress )
 
 	QCoreApplication::processEvents( QEventLoop::ExcludeUserInputEvents );
 }
-
-#include "kmplotprogress.moc"
diff --git a/kmplot/kparametereditor.cpp b/kmplot/kparametereditor.cpp
index bc36f4c..d136640 100644
--- a/kmplot/kparametereditor.cpp
+++ b/kmplot/kparametereditor.cpp
@@ -340,5 +340,3 @@ bool KParameterEditor::checkTwoOfIt(const QString & text)
 {
 	return !m_mainWidget->list->findItems(text,Qt::MatchExactly).isEmpty();
 }
-
-#include "kparametereditor.moc"
diff --git a/kmplot/kprinterdlg.cpp b/kmplot/kprinterdlg.cpp
index 21a0d52..7f3614c 100644
--- a/kmplot/kprinterdlg.cpp
+++ b/kmplot/kprinterdlg.cpp
@@ -173,5 +173,3 @@ double KPrinterDlg::lengthScaling( ) const
 	LengthScaling scaling = (LengthScaling)m_lengthScalingCombo->currentIndex();
 	return scalingToMeter( scaling );
 }
-
-#include "kprinterdlg.moc"
diff --git a/kmplot/ksliderwindow.cpp b/kmplot/ksliderwindow.cpp
index 8bac45a..5f03b0b 100644
--- a/kmplot/ksliderwindow.cpp
+++ b/kmplot/ksliderwindow.cpp
@@ -127,6 +127,3 @@ void KSliderWindow::closeEvent( QCloseEvent * e)
 	e->accept();
 }
 //END class KSliderWindow
-
-
-#include "ksliderwindow.moc"
diff --git a/kmplot/maindlg.cpp b/kmplot/maindlg.cpp
index 8bb55c3..cdf06f9 100644
--- a/kmplot/maindlg.cpp
+++ b/kmplot/maindlg.cpp
@@ -858,5 +858,3 @@ void BrowserExtension::print()
 {
 	static_cast<MainDlg*>(parent())->slotPrint();
 }
-
-#include "maindlg.moc"
diff --git a/kmplot/parameteranimator.cpp b/kmplot/parameteranimator.cpp
index 3f04d5e..6e7775d 100644
--- a/kmplot/parameteranimator.cpp
+++ b/kmplot/parameteranimator.cpp
@@ -246,5 +246,3 @@ void ParameterAnimator::stopStepping()
 	updateUI();
 }
 //END class ParameterAnimator
-
-#include "parameteranimator.moc"
diff --git a/kmplot/parameterswidget.cpp b/kmplot/parameterswidget.cpp
index ab73b59..1ed0183 100644
--- a/kmplot/parameterswidget.cpp
+++ b/kmplot/parameterswidget.cpp
@@ -105,5 +105,3 @@ void ParametersWidget::associateEquationEdit( EquationEdit * edit \
)  m_equationEdits << edit;
 }
 //END class ParametersWidget
-
-#include "parameterswidget.moc"
diff --git a/kmplot/parser.cpp b/kmplot/parser.cpp
index 7661fd9..51ff599 100644
--- a/kmplot/parser.cpp
+++ b/kmplot/parser.cpp
@@ -1780,6 +1780,3 @@ void ExpressionSanitizer::displayMap( )
 	kDebug() << out;
 }
 //END class ExpressionSanitizer
-
-
-#include "parser.moc"
diff --git a/kmplot/plotstylewidget.cpp b/kmplot/plotstylewidget.cpp
index 9eb41a9..a754e2a 100644
--- a/kmplot/plotstylewidget.cpp
+++ b/kmplot/plotstylewidget.cpp
@@ -127,5 +127,3 @@ void PlotStyleWidget::advancedOptions( )
 	m_dialog->show();
 }
 //END class PlotStyleWidget
-
-#include "plotstylewidget.moc"
diff --git a/kmplot/view.cpp b/kmplot/view.cpp
index 34a80d5..253c974 100644
--- a/kmplot/view.cpp
+++ b/kmplot/view.cpp
@@ -4266,5 +4266,3 @@ IntegralDrawSettings::IntegralDrawSettings()
 	draw = false;
 }
 //END class IntegralDrawSettings
-
-#include "view.moc"


[prev in list] [next in list] [prev in thread] [next in thread] 

Configure | About | News | Add a list | Sponsored by KoreLogic