mirror of
https://github.com/RetroShare/RetroShare.git
synced 2025-07-20 13:19:07 -04:00
commit
3eec7922f6
82 changed files with 1054 additions and 641 deletions
|
@ -104,6 +104,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"
|
||||
|
||||
|
@ -426,6 +432,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