1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 00:37:45 +00:00

LibCore: Move GIODevice hierarchy from LibGUI to LibCore.

This commit is contained in:
Andreas Kling 2019-04-10 20:22:23 +02:00
parent fc1d3074de
commit cfd6e6cc36
19 changed files with 112 additions and 112 deletions

View file

@ -32,7 +32,7 @@ IRCClient::IRCClient()
, m_client_window_list_model(IRCWindowListModel::create(*this))
, m_log(IRCLogBuffer::create())
{
m_socket = new GTCPSocket(this);
m_socket = new CTCPSocket(this);
}
IRCClient::~IRCClient()

View file

@ -4,7 +4,7 @@
#include <AK/HashMap.h>
#include <AK/CircularQueue.h>
#include <AK/Function.h>
#include <LibGUI/GTCPSocket.h>
#include <LibCore/CTCPSocket.h>
#include "IRCLogBuffer.h"
#include "IRCWindow.h"
@ -114,7 +114,7 @@ private:
String m_hostname;
int m_port { 6667 };
GTCPSocket* m_socket { nullptr };
CTCPSocket* m_socket { nullptr };
String m_nickname;
Vector<char> m_line_buffer;

View file

@ -1,5 +1,5 @@
#include "ProcessModel.h"
#include <LibGUI/GFile.h>
#include <LibCore/CFile.h>
#include <fcntl.h>
#include <stdio.h>
#include <pwd.h>
@ -125,8 +125,8 @@ GVariant ProcessModel::data(const GModelIndex& index, Role role) const
void ProcessModel::update()
{
GFile file("/proc/all");
if (!file.open(GIODevice::ReadOnly)) {
CFile file("/proc/all");
if (!file.open(CIODevice::ReadOnly)) {
fprintf(stderr, "ProcessManager: Failed to open /proc/all: %s\n", file.error_string());
exit(1);
return;

View file

@ -8,7 +8,7 @@
#include <LibGUI/GTextEditor.h>
#include <LibGUI/GAction.h>
#include <LibGUI/GFontDatabase.h>
#include <LibGUI/GFile.h>
#include <LibCore/CFile.h>
#include <AK/StringBuilder.h>
#include <unistd.h>
#include <stdio.h>
@ -35,9 +35,9 @@ int main(int argc, char** argv)
String path = "/tmp/TextEditor.save.txt";
if (argc >= 2) {
path = argv[1];
GFile file(path);
CFile file(path);
if (!file.open(GIODevice::ReadOnly)) {
if (!file.open(CIODevice::ReadOnly)) {
fprintf(stderr, "Opening %s: %s\n", path.characters(), file.error_string());
return 1;
}