Rename RPC to Controller

This commit is contained in:
Aditya Kulkarni
2019-10-07 12:45:11 -07:00
parent c6f6b1c126
commit 5939632078
20 changed files with 1074 additions and 182 deletions

View File

@@ -7,7 +7,7 @@
using json = nlohmann::json;
class RPC;
class Controller;
enum ConnectionType {
DetectedConfExternalZcashD = 1,
@@ -34,7 +34,7 @@ class Connection;
class ConnectionLoader {
public:
ConnectionLoader(MainWindow* main, RPC* rpc);
ConnectionLoader(MainWindow* main, Controller* rpc);
~ConnectionLoader();
void loadConnection();
@@ -71,7 +71,7 @@ private:
Ui_ConnectionDialog* connD;
MainWindow* main;
RPC* rpc;
Controller* rpc;
QNetworkReply* currentDownload = nullptr;
QFile* currentOutput = nullptr;