Advertisement
Guest User

Test

a guest
Dec 8th, 2011
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.67 KB | None | 0 0
  1. diff --git a/sinapostwidget.cpp b/sinapostwidget.cpp
  2. index 734aa68..7509b0e 100644
  3. --- a/sinapostwidget.cpp
  4. +++ b/sinapostwidget.cpp
  5. @@ -79,13 +79,13 @@ void SinaPostWidget::slotReply()
  6.  
  7. void SinaPostWidget::slotWrite()
  8. {
  9. - emit reply( QString("@%1").arg( currentPost().author.userName ), QString() );
  10. + emit reply( QString("@%1").arg( currentPost().author.userName ), QString(), QString() );
  11. }
  12.  
  13. void SinaPostWidget::slotReplyAll()
  14. {
  15. QString txt = QString("@%1").arg( currentPost().author.userName );
  16. - emit reply( txt, currentPost().postId );
  17. + emit reply( txt, currentPost().postId, currentPost().author.userName );
  18. }
  19.  
  20. void SinaPostWidget::slotFavorite()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement