Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
C
core
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
LibreOffice
core
Commits
02039def
Kaydet (Commit)
02039def
authored
Tem 14, 2011
tarafından
Caolán McNamara
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Resolves: fdo#36534 rework SvxSimpleTable to not manage its own parent
üst
a76ca532
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
9 additions
and
32 deletions
+9
-32
conflictsdlg.hxx
sc/source/ui/inc/conflictsdlg.hxx
+2
-14
sharedocdlg.hxx
sc/source/ui/inc/sharedocdlg.hxx
+1
-0
conflictsdlg.cxx
sc/source/ui/miscdlgs/conflictsdlg.cxx
+4
-17
sharedocdlg.cxx
sc/source/ui/miscdlgs/sharedocdlg.cxx
+2
-1
No files found.
sc/source/ui/inc/conflictsdlg.hxx
Dosyayı görüntüle @
02039def
...
...
@@ -139,19 +139,6 @@ public:
};
//=============================================================================
// class ScConflictsListBox
//=============================================================================
class
ScConflictsListBox
:
public
SvxRedlinTable
{
private
:
public
:
ScConflictsListBox
(
Window
*
pParent
,
const
ResId
&
rResId
);
~
ScConflictsListBox
();
};
//=============================================================================
// class ScConflictsDlg
//=============================================================================
...
...
@@ -160,7 +147,8 @@ class ScConflictsDlg : public ModalDialog
{
private
:
FixedText
maFtConflicts
;
ScConflictsListBox
maLbConflicts
;
SvxSimpleTableContainer
m_aLbConflictsContainer
;
SvxRedlinTable
maLbConflicts
;
PushButton
maBtnKeepMine
;
PushButton
maBtnKeepOther
;
FixedLine
maFlConflicts
;
...
...
sc/source/ui/inc/sharedocdlg.hxx
Dosyayı görüntüle @
02039def
...
...
@@ -49,6 +49,7 @@ private:
FixedText
maFtWarning
;
FixedLine
maFlUsers
;
FixedText
maFtUsers
;
SvxSimpleTableContainer
m_aLbUsersContainer
;
SvxSimpleTable
maLbUsers
;
FixedLine
maFlEnd
;
HelpButton
maBtnHelp
;
...
...
sc/source/ui/miscdlgs/conflictsdlg.cxx
Dosyayı görüntüle @
02039def
...
...
@@ -393,20 +393,6 @@ void ScConflictsResolver::HandleAction( ScChangeAction* pAction, bool bIsSharedA
}
}
//=============================================================================
// class ScConflictsListBox
//=============================================================================
ScConflictsListBox
::
ScConflictsListBox
(
Window
*
pParent
,
const
ResId
&
rResId
)
:
SvxRedlinTable
(
pParent
,
rResId
)
{
}
ScConflictsListBox
::~
ScConflictsListBox
()
{
}
//=============================================================================
// class ScConflictsDlg
//=============================================================================
...
...
@@ -414,7 +400,8 @@ ScConflictsListBox::~ScConflictsListBox()
ScConflictsDlg
::
ScConflictsDlg
(
Window
*
pParent
,
ScViewData
*
pViewData
,
ScDocument
*
pSharedDoc
,
ScConflictsList
&
rConflictsList
)
:
ModalDialog
(
pParent
,
ScResId
(
RID_SCDLG_CONFLICTS
)
)
,
maFtConflicts
(
this
,
ScResId
(
FT_CONFLICTS
)
)
,
maLbConflicts
(
this
,
ScResId
(
LB_CONFLICTS
)
)
,
m_aLbConflictsContainer
(
this
,
ScResId
(
LB_CONFLICTS
))
,
maLbConflicts
(
m_aLbConflictsContainer
)
,
maBtnKeepMine
(
this
,
ScResId
(
BTN_KEEPMINE
)
)
,
maBtnKeepOther
(
this
,
ScResId
(
BTN_KEEPOTHER
)
)
,
maFlConflicts
(
this
,
ScResId
(
FL_CONFLICTS
)
)
...
...
@@ -753,8 +740,8 @@ void ScConflictsDlg::Resize()
lcl_ChangeControlWidth
(
maFtConflicts
,
nDeltaWidth
);
lcl_ChangeControlWidth
(
m
aLbConflicts
,
nDeltaWidth
);
lcl_ChangeControlHeight
(
m
aLbConflicts
,
nDeltaHeight
);
lcl_ChangeControlWidth
(
m
_aLbConflictsContainer
,
nDeltaWidth
);
lcl_ChangeControlHeight
(
m
_aLbConflictsContainer
,
nDeltaHeight
);
lcl_MoveControlX
(
maBtnKeepMine
,
nDeltaWidth
/
2
);
lcl_MoveControlY
(
maBtnKeepMine
,
nDeltaHeight
);
...
...
sc/source/ui/miscdlgs/sharedocdlg.cxx
Dosyayı görüntüle @
02039def
...
...
@@ -61,7 +61,8 @@ ScShareDocumentDlg::ScShareDocumentDlg( Window* pParent, ScViewData* pViewData )
,
maFtWarning
(
this
,
ScResId
(
FT_WARNING
)
)
,
maFlUsers
(
this
,
ScResId
(
FL_USERS
)
)
,
maFtUsers
(
this
,
ScResId
(
FT_USERS
)
)
,
maLbUsers
(
this
,
ScResId
(
LB_USERS
)
)
,
m_aLbUsersContainer
(
this
,
ScResId
(
LB_USERS
))
,
maLbUsers
(
m_aLbUsersContainer
)
,
maFlEnd
(
this
,
ScResId
(
FL_END
)
)
,
maBtnHelp
(
this
,
ScResId
(
BTN_HELP
)
)
,
maBtnOK
(
this
,
ScResId
(
BTN_OK
)
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment