mirror of
https://github.com/RetroShare/RetroShare.git
synced 2025-05-10 10:05:19 -04:00
Small bug and compiler warning fixes:
- gui/forums/CreateForumMsg.cpp used endl instead of std::endl - constructor's initializer in the wrong order - temporary variables type causing signedness warnings git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@3107 b45a01b8-16f6-495d-af2f-9b41ad6348cc
This commit is contained in:
parent
d48035385b
commit
c3c607ec80
6 changed files with 11 additions and 11 deletions
|
@ -119,7 +119,7 @@ void QuickStartWizard::on_pushButtonConnectionNext_clicked()
|
|||
rsPeers->setNetworkMode(rsPeers->getOwnId(), netMode);
|
||||
|
||||
/* Check if vis has changed */
|
||||
int visState = 0;
|
||||
uint32_t visState = 0;
|
||||
if (0 == ui.discoveryComboBox->currentIndex())
|
||||
{
|
||||
visState |= RS_VS_DISC_ON;
|
||||
|
@ -453,7 +453,7 @@ void QuickStartWizard::saveChanges()
|
|||
}
|
||||
rsPeers->setNetworkMode(ownId, netMode);
|
||||
|
||||
int visState = 0;
|
||||
uint32_t visState = 0;
|
||||
/* Check if vis has changed */
|
||||
if (0 == ui.discoveryComboBox->currentIndex())
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue