run astyle

This commit is contained in:
Albert Medela
2017-08-16 13:55:18 +02:00
parent 94d87ed33e
commit 65e10c71b0
89 changed files with 888 additions and 488 deletions
+10 -5
View File
@@ -76,21 +76,26 @@ public:
startWindowImpl(ConfigFile *c, Log *l);
~startWindowImpl();
void setSession(boost::shared_ptr<Session> session) {
void setSession(boost::shared_ptr<Session> session)
{
mySession = session;
}
boost::shared_ptr<Session> getSession() {
boost::shared_ptr<Session> getSession()
{
assert(mySession.get());
return mySession;
}
boost::shared_ptr< GuiInterface > getMyServerGuiInterface() const {
boost::shared_ptr< GuiInterface > getMyServerGuiInterface() const
{
return myServerGuiInterface;
}
connectToServerDialogImpl* getMyConnectToServerDialog() const {
connectToServerDialogImpl* getMyConnectToServerDialog() const
{
return myConnectToServerDialog;
}
void setGuiLog(guiLog* l) {
void setGuiLog(guiLog* l)
{
myGuiLog = l;
}