mirror of
https://github.com/YGGverse/Yoda.git
synced 2026-03-31 16:45:27 +00:00
update returned data type
This commit is contained in:
parent
ee965e496e
commit
5dbb1fad0d
2 changed files with 3 additions and 3 deletions
|
|
@ -132,11 +132,11 @@ int Page::restore(
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
int Page::save(
|
void Page::save(
|
||||||
const sqlite3_int64 & APP_BROWSER_MAIN_TAB__SESSION__ID
|
const sqlite3_int64 & APP_BROWSER_MAIN_TAB__SESSION__ID
|
||||||
) {
|
) {
|
||||||
// Delegate save action to child components
|
// Delegate save action to child components
|
||||||
return pageNavigation->save(
|
pageNavigation->save(
|
||||||
DB::SESSION::add(
|
DB::SESSION::add(
|
||||||
db,
|
db,
|
||||||
APP_BROWSER_MAIN_TAB__SESSION__ID,
|
APP_BROWSER_MAIN_TAB__SESSION__ID,
|
||||||
|
|
|
||||||
|
|
@ -125,7 +125,7 @@ namespace app::browser::main::tab
|
||||||
const sqlite3_int64 & APP_BROWSER_MAIN_TAB__SESSION__ID
|
const sqlite3_int64 & APP_BROWSER_MAIN_TAB__SESSION__ID
|
||||||
); // return sqlite3_finalize status code
|
); // return sqlite3_finalize status code
|
||||||
|
|
||||||
int save(
|
void save(
|
||||||
const sqlite3_int64 & APP_BROWSER_MAIN_TAB__SESSION__ID
|
const sqlite3_int64 & APP_BROWSER_MAIN_TAB__SESSION__ID
|
||||||
);
|
);
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue