Skip to content

Commit

Permalink
just better default settings
Browse files Browse the repository at this point in the history
  • Loading branch information
cpscotti committed Jun 14, 2011
1 parent b8dd670 commit 1d68379
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion PushBurton2/broadcasterdevice.cpp
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ BroadcasterDevice::BroadcasterDevice(QObject *parent) :






serverAddress = QHostAddress("192.168.0.3"); serverAddress = QHostAddress("192.168.0.3");//91.125.187.95


serverPort = 45454; serverPort = 45454;


Expand Down
4 changes: 2 additions & 2 deletions PushBurton2/graphicssettings.cpp
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -180,7 +180,7 @@ void GraphicsSettings::buildForm()
connect(soundEffectsCheck, SIGNAL(toggled(bool)), this, SLOT(update_soundEffects(bool))); connect(soundEffectsCheck, SIGNAL(toggled(bool)), this, SLOT(update_soundEffects(bool)));


//Address and Port line edits //Address and Port line edits
serverAddress = new QLineEdit("Address"); serverAddress = new QLineEdit("91.125.187.95");//Address");
serverAddress->setStyleSheet(widStyle); serverAddress->setStyleSheet(widStyle);
proxy2Addr = new QGraphicsProxyWidget(this); proxy2Addr = new QGraphicsProxyWidget(this);
proxy2Addr->setWidget(serverAddress); proxy2Addr->setWidget(serverAddress);
Expand All @@ -189,7 +189,7 @@ void GraphicsSettings::buildForm()
proxy2Addr->setZValue(2); proxy2Addr->setZValue(2);
proxy2Addr->setPos(40,200); proxy2Addr->setPos(40,200);


serverPort = new QLineEdit("Port"); serverPort = new QLineEdit("45454");//Port");
serverPort->setStyleSheet(widStyle); serverPort->setStyleSheet(widStyle);
proxy2Port = new QGraphicsProxyWidget(this); proxy2Port = new QGraphicsProxyWidget(this);
proxy2Port->setWidget(serverPort); proxy2Port->setWidget(serverPort);
Expand Down

0 comments on commit 1d68379

Please sign in to comment.