Skip to content

Commit

Permalink
fix(tier4 sceen capture panel): fix setFormatDate (#5626)
Browse files Browse the repository at this point in the history
* fix(autoware_auto_tf2): remove tf2 geometry function duplicated in tf2 geometry msgs (#5089)

* fix(tier4_screen_capture_panel): set format date

---------

Co-authored-by: Daisuke Nishimatsu <[email protected]>
  • Loading branch information
taikitanaka3 and wep21 authored Nov 20, 2023
1 parent bd11f8a commit 126be79
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ void setFormatDate(QLabel * line, double time)
char buffer[128];
auto seconds = static_cast<time_t>(time);
strftime(buffer, sizeof(buffer), "%Y-%m-%d-%H-%M-%S", localtime(&seconds));
line->setText(QString("- ") + QString(buffer) + QString(".mp4"));
line->setText(QString("-") + QString(buffer));
}

AutowareScreenCapturePanel::AutowareScreenCapturePanel(QWidget * parent)
Expand Down

0 comments on commit 126be79

Please sign in to comment.