Fixed compile on Windows.

git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@6214 b45a01b8-16f6-495d-af2f-9b41ad6348cc
This commit is contained in:
thunder2 2013-03-12 00:07:20 +00:00
parent 7fcdedea27
commit f4569c57bd
4 changed files with 2 additions and 15 deletions

View File

@ -48,7 +48,7 @@ ChanNewItem::ChanNewItem(FeedHolder *parent, uint32_t feedId, const std::string
/* specific ones */
connect( subscribeButton, SIGNAL( clicked( void ) ), this, SLOT( subscribeChannel ( void ) ) );
small();
expandFrame->hide();
updateItemStatic();
updateItem();
}
@ -132,12 +132,6 @@ void ChanNewItem::updateItem()
}
void ChanNewItem::small()
{
expandFrame->hide();
}
void ChanNewItem::toggle()
{
mParent->lockLayout(this, true);

View File

@ -36,7 +36,6 @@ public:
ChanNewItem(FeedHolder *parent, uint32_t feedId, const std::string &chanId, bool isHome, bool isNew);
void updateItemStatic();
void small();
private slots:
/* default stuff */

View File

@ -49,7 +49,7 @@ ForumNewItem::ForumNewItem(FeedHolder *parent, uint32_t feedId, const std::strin
// To Cheeky to post on a brand new forum....
connect( postButton, SIGNAL( clicked( void ) ), this, SLOT( postToForum ( void ) ) );
small();
expandFrame->hide();
updateItemStatic();
updateItem();
}
@ -123,11 +123,6 @@ void ForumNewItem::updateItem()
}
void ForumNewItem::small()
{
expandFrame->hide();
}
void ForumNewItem::toggle()
{
mParent->lockLayout(this, true);

View File

@ -36,7 +36,6 @@ public:
ForumNewItem(FeedHolder *parent, uint32_t feedId, const std::string &forumId, bool isHome, bool isNew);
void updateItemStatic();
void small();
private slots:
/* default stuff */