Convert rest of source to 4-space indent

This commit is contained in:
Matt Kelly 2014-02-11 11:14:19 -05:00
parent a171df744d
commit 1bc48a7849
146 changed files with 12810 additions and 12810 deletions

View file

@ -6,16 +6,16 @@
class LocalServerInterface;
class LocalClient : public AbstractClient {
Q_OBJECT
Q_OBJECT
private:
LocalServerInterface *lsi;
LocalServerInterface *lsi;
public:
LocalClient(LocalServerInterface *_lsi, const QString &_playerName, QObject *parent = 0);
~LocalClient();
void sendCommandContainer(const CommandContainer &cont);
LocalClient(LocalServerInterface *_lsi, const QString &_playerName, QObject *parent = 0);
~LocalClient();
void sendCommandContainer(const CommandContainer &cont);
private slots:
void itemFromServer(const ServerMessage &item);
void itemFromServer(const ServerMessage &item);
};
#endif