Skip to content

Commit e96a94e

Browse files
Fix linter fatal error
1 parent a02b052 commit e96a94e

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

src/front_end_db/include/sqlite_manager.hxx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ class SQLiteManager {
1515
void on_create_clipboard_cache_error(const InitDataResult &status) noexcept;
1616

1717
public:
18-
void create_clipboard_cache(QMainWindow *main_window) noexcept;
18+
void create_clipboard_cache(QMainWindow *main_window);
1919

2020
private:
2121
QMainWindow *_main_window;

src/front_end_db/sqlite_manager.cxx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ void Self::on_create_folder_error(const MkdirResult& result) noexcept {
6565
}
6666
}
6767

68-
void Self::create_clipboard_cache(QMainWindow* main_window) noexcept {
68+
void Self::create_clipboard_cache(QMainWindow* main_window) {
6969
this->_main_window = main_window;
7070

7171
auto raw_cache_directory = cache_dir();

0 commit comments

Comments
 (0)