[KBear-cvs] kbear/kbear main.cpp,1.66,1.67 Makefile.am,1.70,1.71 pluginmanager.cpp,1.19,1.20
Brought to you by:
kbjorn
|
From: <kb...@us...> - 2003-07-23 18:27:57
|
Update of /cvsroot/kbear/kbear/kbear
In directory sc8-pr-cvs1:/tmp/cvs-serv13799/kbear
Modified Files:
main.cpp Makefile.am pluginmanager.cpp
Log Message:
Bugfixes and feature improvements
Index: main.cpp
===================================================================
RCS file: /cvsroot/kbear/kbear/kbear/main.cpp,v
retrieving revision 1.66
retrieving revision 1.67
diff -C2 -d -r1.66 -r1.67
*** main.cpp 19 Jul 2003 18:45:39 -0000 1.66
--- main.cpp 23 Jul 2003 18:27:24 -0000 1.67
***************
*** 66,74 ****
QObject::connect( API::getInstance()->pluginManager(), SIGNAL( loadingPlugin( const QString& ) ),
splash, SLOT( slotShowMessage( const QString& ) ) );
- API::getInstance()->pluginManager()->loadPlugins();
- app.processEvents();
if( API::getInstance()->core()->isShuttingDown() )
return 0;
// splash->raise();
--- 66,76 ----
QObject::connect( API::getInstance()->pluginManager(), SIGNAL( loadingPlugin( const QString& ) ),
splash, SLOT( slotShowMessage( const QString& ) ) );
if( API::getInstance()->core()->isShuttingDown() )
return 0;
+
+ API::getInstance()->pluginManager()->loadPlugins();
+ app.processEvents();
+
// splash->raise();
Index: Makefile.am
===================================================================
RCS file: /cvsroot/kbear/kbear/kbear/Makefile.am,v
retrieving revision 1.70
retrieving revision 1.71
diff -C2 -d -r1.70 -r1.71
*** Makefile.am 21 Jul 2003 18:06:49 -0000 1.70
--- Makefile.am 23 Jul 2003 18:27:24 -0000 1.71
***************
*** 16,19 ****
--- 16,20 ----
$(XGETTEXT) -ktr $$LIST2 -o $(podir)/kbear.pot; \
fi
+ rm -f $(top_builddir)/kbear/plugins/tipofday/tips.cc;
# this is the program that gets installed. it's name is used for all
Index: pluginmanager.cpp
===================================================================
RCS file: /cvsroot/kbear/kbear/kbear/pluginmanager.cpp,v
retrieving revision 1.19
retrieving revision 1.20
diff -C2 -d -r1.19 -r1.20
*** pluginmanager.cpp 19 Jul 2003 18:45:39 -0000 1.19
--- pluginmanager.cpp 23 Jul 2003 18:27:24 -0000 1.20
***************
*** 48,52 ****
//-----------------------------------------------
PluginManager::PluginManager()
! : KBearPluginManagerInterface( 0L )
{
connect( API::getInstance()->core(), SIGNAL( configWidget( KDialogBase* ) ),
--- 48,52 ----
//-----------------------------------------------
PluginManager::PluginManager()
! : KBearPluginManagerInterface( API::getInstance()->mainWindow()->mainWindow() )
{
connect( API::getInstance()->core(), SIGNAL( configWidget( KDialogBase* ) ),
|