kontact
sidepanebase.cpp00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022 #include "core.h"
00023
00024 #include "sidepanebase.h"
00025
00026 using namespace Kontact;
00027
00028 SidePaneBase::SidePaneBase( Core *core, QWidget *parent, const char *name )
00029 : QVBox( parent, name ), mCore( core )
00030 {
00031 }
00032
00033 SidePaneBase::~SidePaneBase()
00034 {
00035 }
00036
00037 Core* SidePaneBase::core() const
00038 {
00039 return mCore;
00040 }
00041
00042 void SidePaneBase::setActionCollection( KActionCollection *actionCollection )
00043 {
00044 mActionCollection = actionCollection;
00045 }
00046
00047 KActionCollection *SidePaneBase::actionCollection() const
00048 {
00049 return mActionCollection;
00050 }
00051
00052 #include "sidepanebase.moc"
|