mirror of
https://github.com/RetroShare/RetroShare.git
synced 2025-07-20 13:19:07 -04:00
update code to get Wiki / Wire and PhotoShare compiling again
This commit is contained in:
parent
a9f24c85a0
commit
d748278637
12 changed files with 105 additions and 27 deletions
|
@ -103,6 +103,12 @@
|
|||
#ifdef RS_USE_WIKI
|
||||
#include "gui/WikiPoos/WikiDialog.h"
|
||||
#endif
|
||||
#ifdef RS_USE_WIRE
|
||||
#include "gui/TheWire/WireDialog.h"
|
||||
#endif
|
||||
#ifdef RS_USE_PHOTO
|
||||
#include "gui/PhotoShare/PhotoShare.h"
|
||||
#endif
|
||||
#include "gui/Posted/PostedDialog.h"
|
||||
#include "gui/statistics/StatisticsWindow.h"
|
||||
|
||||
|
@ -423,6 +429,17 @@ void MainWindow::initStackedPage()
|
|||
addPage(wikiDialog = new WikiDialog(ui->stackPages), grp, ¬ify);
|
||||
#endif
|
||||
|
||||
#ifdef RS_USE_WIRE
|
||||
WireDialog *wireDialog = NULL;
|
||||
addPage(wireDialog = new WireDialog(ui->stackPages), grp, ¬ify);
|
||||
#endif
|
||||
|
||||
#ifdef RS_USE_PHOTO
|
||||
PhotoShare *photoDialog = NULL;
|
||||
addPage(photoDialog = new PhotoShare(ui->stackPages), grp, ¬ify);
|
||||
#endif
|
||||
|
||||
|
||||
std::cerr << "Looking for interfaces in existing plugins:" << std::endl;
|
||||
for(int i = 0;i<rsPlugins->nbPlugins();++i)
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue