Skip to content

Commit

Permalink
lint: format code using clang-format
Browse files Browse the repository at this point in the history
Signed-off-by: Patrizio Bekerle <[email protected]>
  • Loading branch information
pbek committed Jan 2, 2025
1 parent d1404a7 commit 88ab086
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/mainwindow.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -7372,14 +7372,14 @@ void MainWindow::on_actionFormat_text_italic_triggered() { applyFormatter(QStrin
* Increases the note text font size by one
*/
void MainWindow::on_action_Increase_note_text_size_triggered() {
Q_EMIT activeNoteTextEdit() -> zoomIn();
Q_EMIT activeNoteTextEdit()->zoomIn();
}

/**
* Decreases the note text font size by one
*/
void MainWindow::on_action_Decrease_note_text_size_triggered() {
Q_EMIT activeNoteTextEdit() -> zoomOut();
Q_EMIT activeNoteTextEdit()->zoomOut();
}

/**
Expand Down

0 comments on commit 88ab086

Please sign in to comment.