Skip to content

Commit

Permalink
fix -Wextra in Sandbox
Browse files Browse the repository at this point in the history
  • Loading branch information
wwmayer committed Sep 23, 2016
1 parent 4afc110 commit b1272cb
Show file tree
Hide file tree
Showing 6 changed files with 51 additions and 48 deletions.
8 changes: 4 additions & 4 deletions src/Mod/Sandbox/App/AppSandbox.cpp
Expand Up @@ -151,12 +151,12 @@ class PythonBaseClass : public Py::PythonClass< PythonBaseClass >
// len(x)
return m_array.size();
}
virtual Py::Object sequence_concat(const Py::Object & i)
virtual Py::Object sequence_concat(const Py::Object &)
{
// x + y
throw Py::NotImplementedError("not yet implemented");
}
virtual Py::Object sequence_repeat(Py_ssize_t i)
virtual Py::Object sequence_repeat(Py_ssize_t)
{
// x * 3
throw Py::NotImplementedError("not yet implemented");
Expand All @@ -168,7 +168,7 @@ class PythonBaseClass : public Py::PythonClass< PythonBaseClass >
throw Py::IndexError("index out of range");
return m_array[i];
}
virtual Py::Object sequence_slice(Py_ssize_t i, Py_ssize_t j)
virtual Py::Object sequence_slice(Py_ssize_t, Py_ssize_t)
{
// x[0:3]
throw Py::NotImplementedError("not yet implemented");
Expand All @@ -181,7 +181,7 @@ class PythonBaseClass : public Py::PythonClass< PythonBaseClass >
m_array[i] = o;
return 0;
}
virtual int sequence_ass_slice(Py_ssize_t i, Py_ssize_t j, const Py::Object & o)
virtual int sequence_ass_slice(Py_ssize_t, Py_ssize_t, const Py::Object &)
{
// x[0:3] = y
throw Py::NotImplementedError("not yet implemented");
Expand Down
2 changes: 1 addition & 1 deletion src/Mod/Sandbox/Gui/AppSandboxGui.cpp
Expand Up @@ -204,7 +204,7 @@ class Module : public Py::ExtensionModule<Module>
virtual ~Module() {}

private:
Py::Object interactiveFilletArc(const Py::Tuple& args)
Py::Object interactiveFilletArc(const Py::Tuple& /*args*/)
{
Gui::Document* doc = Gui::Application::Instance->activeDocument();
if (doc) {
Expand Down
58 changes: 29 additions & 29 deletions src/Mod/Sandbox/Gui/Command.cpp
Expand Up @@ -95,7 +95,7 @@ CmdSandboxDocumentThread::CmdSandboxDocumentThread()
sPixmap = "Std_Tool1";
}

void CmdSandboxDocumentThread::activated(int iMsg)
void CmdSandboxDocumentThread::activated(int)
{
App::GetApplication().newDocument("Thread");
for (int i=0; i<5; i++) {
Expand All @@ -122,7 +122,7 @@ CmdSandboxDocumentTestThread::CmdSandboxDocumentTestThread()
sPixmap = "Std_Tool1";
}

void CmdSandboxDocumentTestThread::activated(int iMsg)
void CmdSandboxDocumentTestThread::activated(int)
{
App::GetApplication().newDocument("Thread");
Sandbox::DocumentTestThread* dt = new Sandbox::DocumentTestThread();
Expand All @@ -145,7 +145,7 @@ CmdSandboxDocumentSaveThread::CmdSandboxDocumentSaveThread()
sStatusTip = QT_TR_NOOP("Sandbox save function");
}

void CmdSandboxDocumentSaveThread::activated(int iMsg)
void CmdSandboxDocumentSaveThread::activated(int)
{
App::Document* doc = App::GetApplication().getActiveDocument();
Sandbox::DocumentSaverThread* dt = new Sandbox::DocumentSaverThread(doc);
Expand Down Expand Up @@ -174,7 +174,7 @@ CmdSandboxDocThreadWithSeq::CmdSandboxDocThreadWithSeq()
sPixmap = "Std_Tool2";
}

void CmdSandboxDocThreadWithSeq::activated(int iMsg)
void CmdSandboxDocThreadWithSeq::activated(int)
{
App::GetApplication().newDocument("Thread");
Sandbox::DocumentThread* dt = new Sandbox::DocumentThread();
Expand Down Expand Up @@ -213,7 +213,7 @@ CmdSandboxDocThreadBusy::CmdSandboxDocThreadBusy()
sPixmap = "Std_Tool3";
}

void CmdSandboxDocThreadBusy::activated(int iMsg)
void CmdSandboxDocThreadBusy::activated(int)
{
App::GetApplication().newDocument("Thread");
Sandbox::DocumentThread* dt = new Sandbox::DocumentThread();
Expand Down Expand Up @@ -250,7 +250,7 @@ CmdSandboxDocumentNoThread::CmdSandboxDocumentNoThread()
sPixmap = "Std_Tool4";
}

void CmdSandboxDocumentNoThread::activated(int iMsg)
void CmdSandboxDocumentNoThread::activated(int)
{
App::GetApplication().newDocument("Thread");
App::Document* doc = App::GetApplication().getActiveDocument();
Expand Down Expand Up @@ -281,7 +281,7 @@ CmdSandboxWorkerThread::CmdSandboxWorkerThread()
sPixmap = "Std_Tool1";
}

void CmdSandboxWorkerThread::activated(int iMsg)
void CmdSandboxWorkerThread::activated(int)
{
Sandbox::WorkerThread* wt = new Sandbox::WorkerThread();
QObject::connect(wt, SIGNAL(finished()), wt, SLOT(deleteLater()));
Expand All @@ -303,7 +303,7 @@ CmdSandboxPythonLockThread::CmdSandboxPythonLockThread()
sStatusTip = QT_TR_NOOP("Use Python's thread module where each thread is locked");
}

void CmdSandboxPythonLockThread::activated(int iMsg)
void CmdSandboxPythonLockThread::activated(int)
{
doCommand(Doc,
"import thread, time, Sandbox\n"
Expand Down Expand Up @@ -338,7 +338,7 @@ CmdSandboxPythonNolockThread::CmdSandboxPythonNolockThread()
sStatusTip = QT_TR_NOOP("Use Python's thread module where each thread is unlocked");
}

void CmdSandboxPythonNolockThread::activated(int iMsg)
void CmdSandboxPythonNolockThread::activated(int)
{
doCommand(Doc,
"import thread, time, Sandbox\n"
Expand Down Expand Up @@ -370,7 +370,7 @@ CmdSandboxPyQtThread::CmdSandboxPyQtThread()
sStatusTip = QT_TR_NOOP("Use PyQt's thread module");
}

void CmdSandboxPyQtThread::activated(int iMsg)
void CmdSandboxPyQtThread::activated(int)
{
doCommand(Doc,
"from PyQt4 import QtCore; import Sandbox\n"
Expand Down Expand Up @@ -405,7 +405,7 @@ CmdSandboxPythonThread::CmdSandboxPythonThread()
sStatusTip = QT_TR_NOOP("Use class PythonThread running Python code in its run() method");
}

void CmdSandboxPythonThread::activated(int iMsg)
void CmdSandboxPythonThread::activated(int)
{
App::GetApplication().newDocument("Thread");
for (int i=0; i<5; i++) {
Expand All @@ -431,7 +431,7 @@ CmdSandboxPythonMainThread::CmdSandboxPythonMainThread()
sStatusTip = QT_TR_NOOP("Run python code in main thread");
}

void CmdSandboxPythonMainThread::activated(int iMsg)
void CmdSandboxPythonMainThread::activated(int)
{
doCommand(Doc,
"import Sandbox\n"
Expand All @@ -458,7 +458,7 @@ CmdSandboxDocThreadWithDialog::CmdSandboxDocThreadWithDialog()
sPixmap = "Std_Tool7";
}

void CmdSandboxDocThreadWithDialog::activated(int iMsg)
void CmdSandboxDocThreadWithDialog::activated(int)
{
App::GetApplication().newDocument("Thread");
Sandbox::DocumentThread* dt = new Sandbox::DocumentThread();
Expand All @@ -485,7 +485,7 @@ CmdSandboxDocThreadWithFileDlg::CmdSandboxDocThreadWithFileDlg()
sPixmap = "Std_Tool7";
}

void CmdSandboxDocThreadWithFileDlg::activated(int iMsg)
void CmdSandboxDocThreadWithFileDlg::activated(int)
{
App::GetApplication().newDocument("Thread");
Sandbox::DocumentThread* dt = new Sandbox::DocumentThread();
Expand Down Expand Up @@ -523,7 +523,7 @@ CmdSandboxEventLoop::CmdSandboxEventLoop()
sPixmap = "Std_Tool6";
}

void CmdSandboxEventLoop::activated(int iMsg)
void CmdSandboxEventLoop::activated(int)
{
QTimer timer;
timer.setSingleShot(true);
Expand Down Expand Up @@ -566,7 +566,7 @@ CmdSandboxMeshLoader::CmdSandboxMeshLoader()
sPixmap = "Std_Tool6";
}

void CmdSandboxMeshLoader::activated(int iMsg)
void CmdSandboxMeshLoader::activated(int)
{
// use current path as default
QStringList filter;
Expand Down Expand Up @@ -624,7 +624,7 @@ CmdSandboxMeshLoaderBoost::CmdSandboxMeshLoaderBoost()
sPixmap = "Std_Tool6";
}

void CmdSandboxMeshLoaderBoost::activated(int iMsg)
void CmdSandboxMeshLoaderBoost::activated(int)
{
# if BOOST_VERSION >= 104100
// use current path as default
Expand Down Expand Up @@ -678,7 +678,7 @@ CmdSandboxMeshLoaderFuture::CmdSandboxMeshLoaderFuture()
sPixmap = "Std_Tool6";
}

void CmdSandboxMeshLoaderFuture::activated(int iMsg)
void CmdSandboxMeshLoaderFuture::activated(int)
{
// use current path as default
QStringList filter;
Expand Down Expand Up @@ -793,7 +793,7 @@ CmdSandboxMeshTestJob::CmdSandboxMeshTestJob()
sPixmap = "Std_Tool7";
}

void CmdSandboxMeshTestJob::activated(int iMsg)
void CmdSandboxMeshTestJob::activated(int)
{
Mesh::MeshObjectConstRefList meshes;
App::Document* app_doc = App::GetApplication().getActiveDocument();
Expand Down Expand Up @@ -887,7 +887,7 @@ CmdSandboxMeshTestRef::CmdSandboxMeshTestRef()
sStatusTip = QT_TR_NOOP("Sandbox Test function");
}

void CmdSandboxMeshTestRef::activated(int iMsg)
void CmdSandboxMeshTestRef::activated(int)
{
Gui::WaitCursor wc;
std::vector< boost::shared_ptr<QThread> > threads;
Expand Down Expand Up @@ -934,7 +934,7 @@ CmdTestGrabWidget::CmdTestGrabWidget()
sStatusTip = sToolTipText;
}

void CmdTestGrabWidget::activated(int iMsg)
void CmdTestGrabWidget::activated(int)
{
QCalendarWidget* c = new QCalendarWidget();
c->hide();
Expand Down Expand Up @@ -1052,7 +1052,7 @@ CmdTestImageNode::CmdTestImageNode()
sStatusTip = sToolTipText;
}

void CmdTestImageNode::activated(int iMsg)
void CmdTestImageNode::activated(int)
{
QString text = QString::fromLatin1("Distance: 2.7jgiorjgor84mm");
QFont font;
Expand Down Expand Up @@ -1137,7 +1137,7 @@ CmdTestGDIWidget::CmdTestGDIWidget()
sStatusTip = sToolTipText;
}

void CmdTestGDIWidget::activated(int iMsg)
void CmdTestGDIWidget::activated(int)
{
#ifdef Q_OS_WIN32
GDIWidget* gdi = new GDIWidget(Gui::getMainWindow());
Expand All @@ -1163,7 +1163,7 @@ CmdTestRedirectPaint::CmdTestRedirectPaint()
sStatusTip = sToolTipText;
}

void CmdTestRedirectPaint::activated(int iMsg)
void CmdTestRedirectPaint::activated(int)
{
QCalendarWidget* cal = new QCalendarWidget();
QLabel* label = new QLabel();
Expand All @@ -1189,7 +1189,7 @@ CmdTestCryptographicHash::CmdTestCryptographicHash()
sStatusTip = sToolTipText;
}

void CmdTestCryptographicHash::activated(int iMsg)
void CmdTestCryptographicHash::activated(int)
{
QByteArray data = "FreeCAD";
QByteArray hash = QCryptographicHash::hash(data, QCryptographicHash::Md5);
Expand All @@ -1211,7 +1211,7 @@ CmdTestWidgetShape::CmdTestWidgetShape()
sStatusTip = sToolTipText;
}

void CmdTestWidgetShape::activated(int iMsg)
void CmdTestWidgetShape::activated(int)
{
SandboxGui::SoWidgetShape* shape = new SandboxGui::SoWidgetShape;
shape->setWidget(new QCalendarWidget());
Expand Down Expand Up @@ -1349,7 +1349,7 @@ MeshObjectRef makeParallelMengerSponge(int level, float x0, float y0, float z0)
return mesh;
}

void CmdMengerSponge::activated(int iMsg)
void CmdMengerSponge::activated(int)
{
bool ok;
int level = QInputDialog::getInt(Gui::getMainWindow(),
Expand Down Expand Up @@ -1402,7 +1402,7 @@ CmdTestGraphicsView::CmdTestGraphicsView()
sStatusTip = QT_TR_NOOP("Creates a new view window for the active document");
}

void CmdTestGraphicsView::activated(int iMsg)
void CmdTestGraphicsView::activated(int)
{
Gui::GraphicsView3D* view3D = new Gui::GraphicsView3D(getActiveGuiDocument(), Gui::getMainWindow());
view3D->setWindowTitle(QString::fromLatin1("Graphics scene"));
Expand Down Expand Up @@ -1431,7 +1431,7 @@ CmdTestTaskBox::CmdTestTaskBox()
sStatusTip = sToolTipText;
}

void CmdTestTaskBox::activated(int iMsg)
void CmdTestTaskBox::activated(int)
{
QWidget* w = new SandboxGui::TaskPanelView();
w->setAttribute(Qt::WA_DeleteOnClose);
Expand Down
23 changes: 13 additions & 10 deletions src/Mod/Sandbox/Gui/GLGraphicsView.cpp
Expand Up @@ -213,7 +213,7 @@ SceneEventFilter::unregisterInputDevice(SIM::Coin3D::Quarter::InputDevice * devi
returns false.
*/
bool
SceneEventFilter::eventFilter(QObject * obj, QEvent * qevent)
SceneEventFilter::eventFilter(QObject *, QEvent * qevent)
{
// Convert the scene event back to a standard event
std::unique_ptr<QEvent> sceneev;
Expand Down Expand Up @@ -732,7 +732,7 @@ void GraphicsScene::mouseMoveEvent(QGraphicsSceneMouseEvent *event)
if (event->isAccepted())
return;
if (event->buttons() & Qt::LeftButton) {
const QPointF delta = event->scenePos() - event->lastScenePos();
//const QPointF delta = event->scenePos() - event->lastScenePos();
//const Point3d angularImpulse = Point3d(delta.y(), delta.x(), 0) * 0.1;

//m_rotation += angularImpulse;
Expand Down Expand Up @@ -760,7 +760,7 @@ void GraphicsScene::mouseReleaseEvent(QGraphicsSceneMouseEvent *event)
if (event->isAccepted())
return;

const int delta = m_time.elapsed() - m_mouseEventTime;
//const int delta = m_time.elapsed() - m_mouseEventTime;
//m_angularMomentum = m_accumulatedMomentum * (1000.0 / qMax(1, delta));
event->accept();
update();
Expand Down Expand Up @@ -972,14 +972,17 @@ void GraphicsView3D::OnChange(ParameterGrp::SubjectType &rCaller,ParameterGrp::M
if (strcmp(Reason, "BackgroundColor") == 0)
{
unsigned long col1 = rGrp.GetUnsigned("BackgroundColor",3940932863UL);
unsigned long col2 = rGrp.GetUnsigned("BackgroundColor2",859006463UL); // default color (dark blue)
unsigned long col3 = rGrp.GetUnsigned("BackgroundColor3",2880160255UL); // default color (blue/grey)
unsigned long col4 = rGrp.GetUnsigned("BackgroundColor4",1869583359UL); // default color (blue/grey)
float r1,g1,b1,r2,g2,b2,r3,g3,b3,r4,g4,b4;
//unsigned long col2 = rGrp.GetUnsigned("BackgroundColor2",859006463UL); // default color (dark blue)
//unsigned long col3 = rGrp.GetUnsigned("BackgroundColor3",2880160255UL); // default color (blue/grey)
//unsigned long col4 = rGrp.GetUnsigned("BackgroundColor4",1869583359UL); // default color (blue/grey)
float r1,g1,b1;
//float r2,g2,b2;
//float r3,g3,b3;
//float r4,g4,b4;
r1 = ((col1 >> 24) & 0xff) / 255.0; g1 = ((col1 >> 16) & 0xff) / 255.0; b1 = ((col1 >> 8) & 0xff) / 255.0;
r2 = ((col2 >> 24) & 0xff) / 255.0; g2 = ((col2 >> 16) & 0xff) / 255.0; b2 = ((col2 >> 8) & 0xff) / 255.0;
r3 = ((col3 >> 24) & 0xff) / 255.0; g3 = ((col3 >> 16) & 0xff) / 255.0; b3 = ((col3 >> 8) & 0xff) / 255.0;
r4 = ((col4 >> 24) & 0xff) / 255.0; g4 = ((col4 >> 16) & 0xff) / 255.0; b4 = ((col4 >> 8) & 0xff) / 255.0;
//r2 = ((col2 >> 24) & 0xff) / 255.0; g2 = ((col2 >> 16) & 0xff) / 255.0; b2 = ((col2 >> 8) & 0xff) / 255.0;
//r3 = ((col3 >> 24) & 0xff) / 255.0; g3 = ((col3 >> 16) & 0xff) / 255.0; b3 = ((col3 >> 8) & 0xff) / 255.0;
//r4 = ((col4 >> 24) & 0xff) / 255.0; g4 = ((col4 >> 16) & 0xff) / 255.0; b4 = ((col4 >> 8) & 0xff) / 255.0;
m_scene->setBackgroundColor(QColor::fromRgbF(r1, g1, b1));
//if (rGrp.GetBool("UseBackgroundColorMid",false) == false)
// _viewer->setGradientBackgroundColor(SbColor(r2, g2, b2), SbColor(r3, g3, b3));
Expand Down
6 changes: 3 additions & 3 deletions src/Mod/Sandbox/Gui/Overlay.cpp
Expand Up @@ -201,7 +201,7 @@ void initializeGL()
glDepthFunc(GL_LESS);
}

void resizeGL(int width, int height)
void resizeGL(int /*width*/, int /*height*/)
{
#if 0
fbObject->bind();
Expand Down Expand Up @@ -588,7 +588,7 @@ int DrawingPlane::mouseButtonEvent(const SoMouseButtonEvent * const e, const QPo
return Continue;
}

int DrawingPlane::locationEvent(const SoLocation2Event * const e, const QPoint& pos)
int DrawingPlane::locationEvent(const SoLocation2Event * const, const QPoint& pos)
{
if (scribbling) {
drawLineTo(pos);
Expand All @@ -610,7 +610,7 @@ int DrawingPlane::locationEvent(const SoLocation2Event * const e, const QPoint&
return Continue;
}

int DrawingPlane::keyboardEvent( const SoKeyboardEvent * const e )
int DrawingPlane::keyboardEvent(const SoKeyboardEvent * const)
{
return Continue;
}
Expand Down
2 changes: 1 addition & 1 deletion src/Mod/Sandbox/Gui/Workbench.cpp
Expand Up @@ -151,7 +151,7 @@ SoWidgetShape::SoWidgetShape()
SO_NODE_CONSTRUCTOR(SoWidgetShape);
}

void SoWidgetShape::GLRender(SoGLRenderAction *action)
void SoWidgetShape::GLRender(SoGLRenderAction * /*action*/)
{
#if 1
this->image = QPixmap::grabWidget(w, w->rect()).toImage();
Expand Down

0 comments on commit b1272cb

Please sign in to comment.