Skip to content

Commit

Permalink
fixed Qt warning.
Browse files Browse the repository at this point in the history
  • Loading branch information
dictoon committed Aug 1, 2012
1 parent 353e9a6 commit 4e46ed9
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions src/appleseed.studio/mainwindow/rendering/renderingmanager.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -163,15 +163,15 @@ void RenderingManager::start_rendering(
new CameraController(
m_render_widget,
m_project->get_scene()));
}

connect(
m_camera_controller.get(), SIGNAL(signal_camera_changed()),
this, SLOT(slot_camera_changed()));
connect(
m_camera_controller.get(), SIGNAL(signal_camera_changed()),
this, SLOT(slot_camera_changed()));

connect(
m_camera_controller.get(), SIGNAL(signal_camera_changed()),
this, SIGNAL(signal_camera_changed()));
connect(
m_camera_controller.get(), SIGNAL(signal_camera_changed()),
this, SIGNAL(signal_camera_changed()));
}

const bool highlight_tiles = !interactive;

Expand Down

0 comments on commit 4e46ed9

Please sign in to comment.