disable the old newstuff system, waiting for the porting to the new one

svn path=/trunk/playground/graphics/okular/; revision=649662
This commit is contained in:
Pino Toscano 2007-04-02 23:36:00 +00:00
parent 88feb05854
commit 8f443fc5fd
2 changed files with 5 additions and 1 deletions

View file

@ -112,7 +112,7 @@ set(okularpart_SRCS
ui/findbar.cpp
ui/formwidgets.cpp
ui/minibar.cpp
ui/newstuff.cpp
# ui/newstuff.cpp
ui/pageitemdelegate.cpp
ui/pagepainter.cpp
ui/pagesizelabel.cpp

View file

@ -60,7 +60,9 @@
#include "ui/thumbnaillist.h"
#include "ui/side_reviews.h"
#include "ui/minibar.h"
#if 0
#include "ui/newstuff.h"
#endif
#include "ui/embeddedfilesdialog.h"
#include "ui/propertiesdialog.h"
#include "ui/presentationwidget.h"
@ -1113,11 +1115,13 @@ void Part::slotSaveFileAs()
void Part::slotGetNewStuff()
{
#if 0
// show the modal dialog over pageview and execute it
NewStuffDialog * dialog = new NewStuffDialog( m_pageView );
connect ( dialog , SIGNAL ( loadItemClicked( const KUrl & ) ), this , SLOT ( openUrlFromDocument ( const KUrl & ) ) );
dialog->exec();
delete dialog;
#endif
}