mirror of
https://github.com/RetroShare/RetroShare.git
synced 2025-07-28 08:54:13 -04:00
Added posted comment creation
contextMnurequested does not seem to be working....may have to use an old fashioned non-derived treewidget. git-svn-id: http://svn.code.sf.net/p/retroshare/code/branches/v0.5-gxs-b1@5894 b45a01b8-16f6-495d-af2f-9b41ad6348cc
This commit is contained in:
parent
744a78b140
commit
8cef4da896
18 changed files with 357 additions and 202 deletions
|
@ -38,7 +38,7 @@
|
|||
|
||||
/** Constructor */
|
||||
PostedItem::PostedItem(PostedHolder *postHolder, const RsPostedPost &post)
|
||||
:QWidget(NULL), mPostHolder(postHolder)
|
||||
:QWidget(NULL), mPostHolder(postHolder), mPost(post)
|
||||
{
|
||||
setupUi(this);
|
||||
setAttribute ( Qt::WA_DeleteOnClose, true );
|
||||
|
@ -71,5 +71,5 @@ void PostedItem::loadComments()
|
|||
{
|
||||
std::cerr << "PostedItem::loadComments() Requesting for " << mThreadId;
|
||||
std::cerr << std::endl;
|
||||
mPostHolder->showComments(mPost.mMeta.mMsgId);
|
||||
mPostHolder->showComments(mPost);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue