mirror of
https://github.com/YGGverse/Yoda.git
synced 2026-03-31 16:45:27 +00:00
remove extra namespace
This commit is contained in:
parent
b840dae964
commit
7ca8ce0157
4 changed files with 5 additions and 5 deletions
|
|
@ -67,7 +67,7 @@ int Tab::restore()
|
|||
{
|
||||
close_all();
|
||||
|
||||
while (::sqlite3_step(statement) == SQLITE_ROW)
|
||||
while (sqlite3_step(statement) == SQLITE_ROW)
|
||||
{
|
||||
const int PAGE_NUMBER = append(
|
||||
reinterpret_cast<const char*>(
|
||||
|
|
@ -375,7 +375,7 @@ int Tab::DB::SESSION::clean(
|
|||
|
||||
if (PREPARE_STATUS == SQLITE_OK)
|
||||
{
|
||||
while (::sqlite3_step(statement) == SQLITE_ROW)
|
||||
while (sqlite3_step(statement) == SQLITE_ROW)
|
||||
{
|
||||
const int APP_BROWSER_MAIN_TAB__SESSION_ID = sqlite3_column_int(
|
||||
statement,
|
||||
|
|
|
|||
|
|
@ -411,7 +411,7 @@ int Page::DB::SESSION::clean(
|
|||
|
||||
if (PREPARE_STATUS == SQLITE_OK)
|
||||
{
|
||||
while (::sqlite3_step(statement) == SQLITE_ROW)
|
||||
while (sqlite3_step(statement) == SQLITE_ROW)
|
||||
{
|
||||
const int APP_BROWSER_MAIN_TAB_PAGE__SESSION_ID = sqlite3_column_int(
|
||||
statement,
|
||||
|
|
|
|||
|
|
@ -246,7 +246,7 @@ int Navigation::DB::SESSION::clean(
|
|||
|
||||
if (PREPARE_STATUS == SQLITE_OK)
|
||||
{
|
||||
while (::sqlite3_step(statement) == SQLITE_ROW)
|
||||
while (sqlite3_step(statement) == SQLITE_ROW)
|
||||
{
|
||||
const int APP_BROWSER_MAIN_TAB_PAGE_NAVIGATION__SESSION_ID = sqlite3_column_int(
|
||||
statement,
|
||||
|
|
|
|||
|
|
@ -196,7 +196,7 @@ int Request::DB::SESSION::clean(
|
|||
|
||||
if (PREPARE_STATUS == SQLITE_OK)
|
||||
{
|
||||
while (::sqlite3_step(statement) == SQLITE_ROW)
|
||||
while (sqlite3_step(statement) == SQLITE_ROW)
|
||||
{
|
||||
// Delete record
|
||||
const int EXEC_STATUS = sqlite3_exec(
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue