mirror of
https://github.com/RetroShare/RetroShare.git
synced 2024-10-01 02:35:48 -04:00
Fix warning: unused variable ‘self’
and misleading-indentation /retroshare-gui/src/gui/feeds/GxsChannelPostItem.cpp:54: warning: unused variable ‘self’ [-Wunused-variable] bool self = false; /retroshare-gui/src/gui/feeds/GxsChannelPostItem.cpp:225: warning: this ‘if’ clause does not guard... [-Wmisleading-indentation] if(!IS_GROUP_PUBLISHER(mGroup.mMeta.mSubscribeFlags))
This commit is contained in:
parent
ca9357cd20
commit
dcb8a352df
@ -63,7 +63,7 @@ GxsChannelPostItem::GxsChannelPostItem(FeedHolder *feedHolder, uint32_t feedId,
|
|||||||
void GxsChannelPostItem::init(const RsGxsMessageId& messageId,const std::set<RsGxsMessageId>& older_versions)
|
void GxsChannelPostItem::init(const RsGxsMessageId& messageId,const std::set<RsGxsMessageId>& older_versions)
|
||||||
{
|
{
|
||||||
QVector<RsGxsMessageId> v;
|
QVector<RsGxsMessageId> v;
|
||||||
bool self = false;
|
//bool self = false;
|
||||||
|
|
||||||
for(std::set<RsGxsMessageId>::const_iterator it(older_versions.begin());it!=older_versions.end();++it)
|
for(std::set<RsGxsMessageId>::const_iterator it(older_versions.begin());it!=older_versions.end();++it)
|
||||||
v.push_back(*it) ;
|
v.push_back(*it) ;
|
||||||
@ -230,12 +230,12 @@ bool GxsChannelPostItem::setGroup(const RsGxsChannelGroup &group, bool doFill)
|
|||||||
|
|
||||||
mGroup = group;
|
mGroup = group;
|
||||||
|
|
||||||
// if not publisher, hide the edit button. Without the publish key, there's no way to edit a message.
|
// If not publisher, hide the edit button. Without the publish key, there's no way to edit a message.
|
||||||
#ifdef DEBUG_ITEM
|
#ifdef DEBUG_ITEM
|
||||||
std::cerr << "Group subscribe flags = " << std::hex << mGroup.mMeta.mSubscribeFlags << std::dec << std::endl;
|
std::cerr << "Group subscribe flags = " << std::hex << mGroup.mMeta.mSubscribeFlags << std::dec << std::endl ;
|
||||||
#endif
|
#endif
|
||||||
if(!IS_GROUP_PUBLISHER(mGroup.mMeta.mSubscribeFlags))
|
if( !IS_GROUP_PUBLISHER(mGroup.mMeta.mSubscribeFlags) )
|
||||||
ui->editButton->hide();
|
ui->editButton->hide() ;
|
||||||
|
|
||||||
if (doFill) {
|
if (doFill) {
|
||||||
fill();
|
fill();
|
||||||
|
Loading…
Reference in New Issue
Block a user