Skip to content

Commit

Permalink
Fixed the Regilo Visual example.
Browse files Browse the repository at this point in the history
  • Loading branch information
branoholy committed Jan 24, 2016
1 parent 77c5da4 commit 99f1ebf
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion examples/regilo-visual/include/regilovisual.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
#include <wx/wx.h>
#endif

#include "regilo/controller.hpp"
#include <regilo/controller.hpp>

class RegiloVisual : public wxApp
{
Expand Down
4 changes: 2 additions & 2 deletions examples/regilo-visual/src/regilovisual.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@

#include <chrono>

#include <regilo/controller.hpp>
#include <regilo/neatocontroller.hpp>

RegiloVisual::RegiloVisual(regilo::Controller *controller, bool useScanner, bool manualScanning, bool moveScanning) : wxApp(),
controller(controller), useScanner(useScanner), manualScanning(manualScanning), moveScanning(moveScanning)
Expand All @@ -33,7 +33,7 @@ RegiloVisual::RegiloVisual(regilo::Controller *controller, bool useScanner, bool
bool RegiloVisual::OnInit()
{
// Frame
frame = new wxFrame(NULL, wxID_ANY, "Regilo Scan", wxDefaultPosition, wxSize(600, 400));
frame = new wxFrame(NULL, wxID_ANY, "Regilo Visual", wxDefaultPosition, wxSize(600, 400));

// Frame StatusBar
wxStatusBar *statusBar = frame->CreateStatusBar(2);
Expand Down

0 comments on commit 99f1ebf

Please sign in to comment.