Changes to allow the GXS services to compile with up-to-date GUI code.

* Mainly just update header file locations.
 * ForumsV2Dialog needs changes/improvements from ForumsDialog applied to it.
     - This merge has broken bits of the code (#warning's inserted).



git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@5339 b45a01b8-16f6-495d-af2f-9b41ad6348cc
This commit is contained in:
drbob 2012-07-27 15:41:52 +00:00
parent bec1407648
commit 2e4cc099dc
12 changed files with 34 additions and 17 deletions

View file

@ -65,8 +65,10 @@ PostedDialog::PostedDialog(QWidget *parent)
mPostedList = new PostedListDialog(NULL);
mPostedComments = new PostedComments(NULL);
ui.tabWidget->addTab(mPostedList, QString("List"));
ui.tabWidget->addTab(mPostedComments, QString("Comments"));
QString list("List");
ui.tabWidget->addTab(mPostedList, list);
QString comments("Comments");
ui.tabWidget->addTab(mPostedComments, comments);
}