mirror of
https://github.com/YGGverse/Yoda.git
synced 2026-04-01 17:15:28 +00:00
fix attribute value data type
This commit is contained in:
parent
7b33edf895
commit
e122eec9c1
1 changed files with 2 additions and 2 deletions
|
|
@ -119,7 +119,7 @@ void Tab::save(
|
||||||
db,
|
db,
|
||||||
APP_BROWSER_MAIN__SESSION__ID,
|
APP_BROWSER_MAIN__SESSION__ID,
|
||||||
page_number,
|
page_number,
|
||||||
page_number == get_current_page() ? 1 : 0
|
page_number == get_current_page()
|
||||||
);
|
);
|
||||||
|
|
||||||
// Delegate save actions to children components
|
// Delegate save actions to children components
|
||||||
|
|
@ -457,7 +457,7 @@ sqlite3_int64 Tab::DB::SESSION::add(
|
||||||
)SQL",
|
)SQL",
|
||||||
APP_BROWSER_MAIN__SESSION__ID,
|
APP_BROWSER_MAIN__SESSION__ID,
|
||||||
PAGE_NUMBER,
|
PAGE_NUMBER,
|
||||||
IS_CURRENT
|
IS_CURRENT ? 1 : 0
|
||||||
).c_str(),
|
).c_str(),
|
||||||
nullptr,
|
nullptr,
|
||||||
nullptr,
|
nullptr,
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue