- Use a capital "B" for Bittorrent class

This commit is contained in:
Christophe Dumez
2009-11-20 08:01:59 +00:00
parent 262b88930e
commit 4ee47ce2b8
24 changed files with 143 additions and 143 deletions

View File

@@ -38,7 +38,7 @@
class QTcpSocket;
class HttpServer;
class bittorrent;
class Bittorrent;
class HttpConnection : public QObject
{
@@ -46,7 +46,7 @@ class HttpConnection : public QObject
private:
QTcpSocket *socket;
HttpServer *parent;
bittorrent *BTSession;
Bittorrent *BTSession;
protected:
HttpRequestParser parser;
@@ -64,7 +64,7 @@ class HttpConnection : public QObject
void recheckAllTorrents();
public:
HttpConnection(QTcpSocket *socket, bittorrent* BTSession, HttpServer *parent);
HttpConnection(QTcpSocket *socket, Bittorrent* BTSession, HttpServer *parent);
~HttpConnection();
private slots: