summaryrefslogtreecommitdiff
path: root/sc/source/ui/collab/contacts.cxx
diff options
context:
space:
mode:
authorMichael Meeks <michael.meeks@suse.com>2012-03-23 17:07:38 +0000
committerMatúš Kukan <matus.kukan@gmail.com>2012-07-17 16:39:57 +0200
commitc4bf2c3ff0dcdcd427d7001dab3728c22629d077 (patch)
tree09744ed5333b794102279a22b853eb5c2522ab4e /sc/source/ui/collab/contacts.cxx
parent0edb65a6fbc070eefd50dfa102374d15da4eb2dd (diff)
tubes: more work on contact list and missing files
Diffstat (limited to 'sc/source/ui/collab/contacts.cxx')
-rw-r--r--sc/source/ui/collab/contacts.cxx12
1 files changed, 5 insertions, 7 deletions
diff --git a/sc/source/ui/collab/contacts.cxx b/sc/source/ui/collab/contacts.cxx
index ff3db987aca9..d517888cdd5b 100644
--- a/sc/source/ui/collab/contacts.cxx
+++ b/sc/source/ui/collab/contacts.cxx
@@ -38,21 +38,19 @@
#ifdef CONTACTS_DLG
namespace {
-class TubeContacts : SfxModelessDialog
+class TubeContacts : ModelessDialog
{
+ FixedLine maLabel;
SvxSimpleTableContainer maListContainer;
SvxSimpleTable maList;
public:
TubeContacts() :
- SystemWindow( WINDOW_FLOATINGWINDOW, ),
- maListContainer( this, CUI_RES( LB_JAVA ) ),
+ ModelessDialog( NULL, RID_SCDLG_CONTACTS ),
+ maLabel( this, ScResId( FL_LABEL ) ),
+ maListContainer( this, ScResId( CTL_LIST ) ),
maList( maListContainer ),
{
-ScResId( FL_PRINTAREA ) ),
-
- ResId aResId;
- mpListContainer = new SvxSimpleTableContainer( this, aResId );
SetMinOutputSizePixel( Size( 640, 480 ) );
Show();
}