remove extra namespace

This commit is contained in:
yggverse 2024-09-11 02:10:56 +03:00
parent b840dae964
commit 7ca8ce0157
4 changed files with 5 additions and 5 deletions

View File

@ -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,

View File

@ -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,

View File

@ -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,

View File

@ -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(