remove data type from variables name

This commit is contained in:
yggverse 2024-09-04 23:00:06 +03:00
parent d812e59794
commit c52a9a3f78
4 changed files with 21 additions and 21 deletions

View file

@ -33,8 +33,8 @@ namespace app::browser::main::tab
// Socket
char buffer[0xfffff]; // 1Mb
Glib::RefPtr<Gio::SocketClient> GioSocketClient_RefPtr;
Glib::RefPtr<Gio::SocketConnection> GioSocketConnection_RefPtr;
Glib::RefPtr<Gio::SocketClient> GioSocketClient;
Glib::RefPtr<Gio::SocketConnection> GioSocketConnection;
// Components
page::Content * pageContent;