X-Git-Url: https://git.cworth.org/git?a=blobdiff_plain;ds=sidebyside;f=src%2Fvogleditor%2Fvogleditor_qframebufferexplorer.cpp;fp=src%2Fvogleditor%2Fvogleditor_qframebufferexplorer.cpp;h=d24dde7c4dda4a4292b01335b7ac114490ee948a;hb=6b82ad0021cc8f833b47f346b089088d09de4a9a;hp=a67bf286a509d3af15717bdb0f328cadb5c266b6;hpb=99b786f0eadcfcdc8eae820e465bdc691cdca55b;p=vogl diff --git a/src/vogleditor/vogleditor_qframebufferexplorer.cpp b/src/vogleditor/vogleditor_qframebufferexplorer.cpp index a67bf28..d24dde7 100644 --- a/src/vogleditor/vogleditor_qframebufferexplorer.cpp +++ b/src/vogleditor/vogleditor_qframebufferexplorer.cpp @@ -316,7 +316,7 @@ void vogleditor_QFramebufferExplorer::selectedFramebufferIndexChanged(int index) (*iter)->setFixedHeight((*iter)->get_preferred_height()); ++viewerIndex; - connect(*iter, SIGNAL(zoomFactorChanged(double)), this, SLOT(on_zoomFactorChanged(double))); + connect(*iter, SIGNAL(zoomFactorChanged(double)), this, SLOT(slot_zoomFactorChanged(double))); } } @@ -335,7 +335,7 @@ void vogleditor_QFramebufferExplorer::selectedFramebufferIndexChanged(int index) m_depthExplorer->set_texture_objects(depthVec); m_depthExplorer->set_active_texture(depthVec[0]->get_snapshot_handle()); } - connect(m_depthExplorer, SIGNAL(zoomFactorChanged(double)), this, SLOT(on_zoomFactorChanged(double))); + connect(m_depthExplorer, SIGNAL(zoomFactorChanged(double)), this, SLOT(slot_zoomFactorChanged(double))); m_depthExplorer->setMinimumHeight(m_depthExplorer->get_preferred_height()); } @@ -354,7 +354,7 @@ void vogleditor_QFramebufferExplorer::selectedFramebufferIndexChanged(int index) m_stencilExplorer->set_texture_objects(stencilVec); m_stencilExplorer->set_active_texture(stencilVec[0]->get_snapshot_handle()); } - connect(m_stencilExplorer, SIGNAL(zoomFactorChanged(double)), this, SLOT(on_zoomFactorChanged(double))); + connect(m_stencilExplorer, SIGNAL(zoomFactorChanged(double)), this, SLOT(slot_zoomFactorChanged(double))); m_stencilExplorer->setMinimumHeight(m_stencilExplorer->get_preferred_height()); } } @@ -403,7 +403,7 @@ vogl_renderbuffer_state* vogleditor_QFramebufferExplorer::get_renderbuffer_attac return pRenderbufferState; } -void vogleditor_QFramebufferExplorer::on_zoomFactorChanged(double zoomFactor) +void vogleditor_QFramebufferExplorer::slot_zoomFactorChanged(double zoomFactor) { VOGL_NOTE_UNUSED(zoomFactor);