Remove warnings about unused moc files

Should fix #194.
This commit is contained in:
Laurent Rineau 2015-08-03 16:27:28 +02:00
parent 03e82e2c87
commit cb0bdd3ad2
15 changed files with 0 additions and 15 deletions

View File

@ -109,5 +109,4 @@ MainWindow::open(QString fileName)
} }
#include "MainWindow.moc"

View File

@ -386,4 +386,3 @@ void Viewer::alphaChanged()
initialize_buffers(); initialize_buffers();
} }
#include "Viewer.moc"

View File

@ -22,7 +22,6 @@
#include "MainWindow.h" #include "MainWindow.h"
#include <CGAL/Delaunay_triangulation_3.h> #include <CGAL/Delaunay_triangulation_3.h>
#include <QSettings> #include <QSettings>
#include "MainWindow.moc"
#include <CGAL/Timer.h> #include <CGAL/Timer.h>
#include <CGAL/ipower.h> #include <CGAL/ipower.h>

View File

@ -860,4 +860,3 @@ QString Viewer::helpString() const
return text; return text;
} }
#include "Viewer.moc"

View File

@ -224,5 +224,4 @@ void MainWindow::help() {
} }
} }
#include "MainWindow.moc"

View File

@ -316,4 +316,3 @@ void Viewer::changed()
compute_elements(); compute_elements();
are_buffers_initialized = false; are_buffers_initialized = false;
} }
#include "Viewer.moc"

View File

@ -26,4 +26,3 @@ unsigned int Raw_image_dialog::image_word_size() const {
return 1; return 1;
} }
#include "Raw_image_dialog.moc"

View File

@ -65,4 +65,3 @@ void ColorListEditor::populateList()
} }
} }
#include "colorlisteditor.moc"

View File

@ -154,4 +154,3 @@ void MainWindow::on_action_Clone_triggered()
other->show(); other->show();
} }
#include "mainwindow.moc"

View File

@ -270,4 +270,3 @@ void Values_list::setHeaderTitle(QString title)
treeWidget->headerItem()->setText(0, title); treeWidget->headerItem()->setText(0, title);
} }
#include "values_list.moc"

View File

@ -66,4 +66,3 @@ void Viewer::set_surface(Surface* s)
surface = s; surface = s;
} }
#include "viewer.moc"

View File

@ -1544,4 +1544,3 @@ void Volume::labellizedToogled(bool toggled)
} }
} }
#include "volume.moc"

View File

@ -1,7 +1,6 @@
#include "MainWindow.h" #include "MainWindow.h"
#include <string> #include <string>
#include "MainWindow.moc" // .moc will be the output from moc preprocessor
MainWindow::MainWindow(QWidget* parent) MainWindow::MainWindow(QWidget* parent)
: CGAL::Qt::DemosMainWindow(parent) : CGAL::Qt::DemosMainWindow(parent)

View File

@ -1,7 +1,6 @@
#include <QtGui> #include <QtGui>
#include "PreferenceDlg.h" #include "PreferenceDlg.h"
#include "PreferenceDlg.moc" // .moc will be the output from moc preprocessor
PreferenceDlg::PreferenceDlg(QWidget *parent) : QDialog(parent) PreferenceDlg::PreferenceDlg(QWidget *parent) : QDialog(parent)
{ {

View File

@ -14,7 +14,6 @@
using namespace std; using namespace std;
#include "Viewer.moc" // .moc will be the output from moc preprocessor
void Viewer::init() void Viewer::init()
{ {