Skip to content

Commit 0b35264

Browse files
committed
Merge branch 'develop'
2 parents 78f0ffa + a544281 commit 0b35264

File tree

16 files changed

+19
-375
lines changed

16 files changed

+19
-375
lines changed

3rdparty/nanogui

3rdparty/xspublic/xstypes/xsstatusflag.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ enum XsStatusFlag
5757

5858
,XSF_RepresentativeMotion = 0x20 //!< Indicates if the In-Run Compass Calibration is doing the representative motion analysis
5959

60-
,XSF_ExternalClockSynced = 0x40 //!< Indicates whether the internal clock is synced with an external clock (Either GNNS or custom provided clock sync)
60+
,XSF_ExternalClockSynced = 0x40 //!< Indicates whether the internal clock is synced with an external clock (Either GNSS or custom provided clock sync)
6161

6262
,XSF_ClipAccX = 0x00000100
6363
,XSF_ClipAccY = 0x00000200

apps/2d-slam-demo/slamdemoMain.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -728,7 +728,7 @@ slamdemoFrame::slamdemoFrame(wxWindow* parent, wxWindowID id)
728728

729729
// IC plot ------------
730730
m_lyICvisibleRange = new mpPolygon();
731-
m_lyICvisibleRange->SetPen(wxPen(wxColour(0, 0, 0), 1, wxLONG_DASH));
731+
m_lyICvisibleRange->SetPen(wxPen(wxColour(0, 0, 0), 1, wxPENSTYLE_LONG_DASH));
732732
m_lyICvisibleRange->SetContinuity(true);
733733
m_lyICvisibleRange->SetCoordinateBase(0, 0, 0);
734734
plotIndivCompat->AddLayer(m_lyICvisibleRange);

apps/camera-calib/camera_calib_guiMain.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -166,7 +166,7 @@ camera_calib_guiDialog::camera_calib_guiDialog(wxWindow* parent, wxWindowID id)
166166
btnCaptureNow = new wxButton(
167167
this, ID_BUTTON8, _("Grab now..."), wxDefaultPosition, wxDefaultSize, 0, wxDefaultValidator,
168168
_T("ID_BUTTON8"));
169-
wxFont btnCaptureNowFont(-1, wxFONTFAMILY_DEFAULT, wxFONTSTYLE_NORMAL, wxBOLD);
169+
wxFont btnCaptureNowFont(-1, wxFONTFAMILY_DEFAULT, wxFONTSTYLE_NORMAL, wxFONTWEIGHT_BOLD);
170170
btnCaptureNow->SetFont(btnCaptureNowFont);
171171
FlexGridSizer5->Add(btnCaptureNow, 1, wxEXPAND, 5);
172172
btnPoseEstimateNow = new wxButton(
@@ -301,7 +301,7 @@ camera_calib_guiDialog::camera_calib_guiDialog(wxWindow* parent, wxWindowID id)
301301
this, ID_BUTTON3, _("Calibrate"), wxDefaultPosition, wxDefaultSize, 0, wxDefaultValidator,
302302
_T("ID_BUTTON3"));
303303
btnRunCalib->SetDefault();
304-
wxFont btnRunCalibFont(-1, wxFONTFAMILY_DEFAULT, wxFONTSTYLE_NORMAL, wxBOLD);
304+
wxFont btnRunCalibFont(-1, wxFONTFAMILY_DEFAULT, wxFONTSTYLE_NORMAL, wxFONTWEIGHT_BOLD);
305305
btnRunCalib->SetFont(btnRunCalibFont);
306306
FlexGridSizer8->Add(btnRunCalib, 1, wxEXPAND, 5);
307307
btnSave = new wxButton(

apps/ptg-configurator/ptgConfiguratorMain.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -206,7 +206,7 @@ ptgConfiguratorframe::ptgConfiguratorframe(wxWindow* parent, wxWindowID id) :
206206
btnReloadParams = new wxButton(
207207
Panel1, ID_BUTTON1, _("Initialize PTG"), wxDefaultPosition, wxDefaultSize, 0,
208208
wxDefaultValidator, _T("ID_BUTTON1"));
209-
wxFont btnReloadParamsFont(-1, wxFONTFAMILY_DEFAULT, wxFONTSTYLE_NORMAL, wxBOLD);
209+
wxFont btnReloadParamsFont(-1, wxFONTFAMILY_DEFAULT, wxFONTSTYLE_NORMAL, wxFONTWEIGHT_BOLD);
210210
btnReloadParams->SetFont(btnReloadParamsFont);
211211
FlexGridSizer7->Add(
212212
btnReloadParams, 1, wxALL | wxALIGN_CENTER_HORIZONTAL | wxALIGN_CENTER_VERTICAL, 5);

apps/rosbag2rawlog/rosbag2rawlog_main.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
// as a RawLog file, easily readable by MRPT C++ programs.
1414
//
1515
// Started: Hunter Laux @ SEPT-2018.
16-
// Maintained: JLBC @ 2018-2023
16+
// Maintained: JLBC @ 2018-2024
1717
// ===========================================================================
1818

1919
#include <cv_bridge/cv_bridge.h> // this header is obsolete in ros2-I but as long as this app is only built for ros1 we are ok

appveyor.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# version format
2-
version: 2.13.3-{branch}-build{build}
2+
version: 2.13.4-{branch}-build{build}
33

44
os: Visual Studio 2019
55

0 commit comments

Comments
 (0)