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
c6d1938f
Kaydet (Commit)
c6d1938f
authored
Ara 27, 2013
tarafından
Caolán McNamara
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
it's a SfxSingleTabDialog not SfxNoLayoutSingleTabDialog
Change-Id: I0c86753fab551a18a9f0c62adc03a3d967947dbf
üst
aabee4ca
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
7 additions
and
28 deletions
+7
-28
cuisrchdlg.hxx
cui/source/inc/cuisrchdlg.hxx
+2
-4
measure.hxx
cui/source/inc/measure.hxx
+3
-5
cuisrchdlg.cxx
cui/source/options/cuisrchdlg.cxx
+2
-9
measure.cxx
cui/source/tabpages/measure.cxx
+0
-10
No files found.
cui/source/inc/cuisrchdlg.hxx
Dosyayı görüntüle @
c6d1938f
...
@@ -44,10 +44,8 @@ class SvxJSearchOptionsDialog : public SfxSingleTabDialog
...
@@ -44,10 +44,8 @@ class SvxJSearchOptionsDialog : public SfxSingleTabDialog
SvxJSearchOptionsDialog
&
operator
==
(
const
SvxJSearchOptionsDialog
&
);
SvxJSearchOptionsDialog
&
operator
==
(
const
SvxJSearchOptionsDialog
&
);
public
:
public
:
SvxJSearchOptionsDialog
(
Window
*
pParent
,
SvxJSearchOptionsDialog
(
Window
*
pParent
,
const
SfxItemSet
&
rOptionsSet
,
const
SfxItemSet
&
rOptionsSet
,
sal_Int32
nInitialFlags
);
sal_Int32
nInitialFlags
);
virtual
~
SvxJSearchOptionsDialog
();
// Window
// Window
virtual
void
Activate
();
virtual
void
Activate
();
...
...
cui/source/inc/measure.hxx
Dosyayı görüntüle @
c6d1938f
...
@@ -81,17 +81,15 @@ public:
...
@@ -81,17 +81,15 @@ public:
};
};
/* Derived from Sfx
NoLayout
SingleTabDialog, in order to be able to be
/* Derived from SfxSingleTabDialog, in order to be able to be
informed about virtual methods by the control. */
informed about virtual methods by the control. */
class
SvxMeasureDialog
:
public
SfxSingleTabDialog
class
SvxMeasureDialog
:
public
SfxSingleTabDialog
{
{
public
:
public
:
SvxMeasureDialog
(
Window
*
pParent
,
const
SfxItemSet
&
rAttr
,
SvxMeasureDialog
(
Window
*
pParent
,
const
SfxItemSet
&
rAttr
,
const
SdrView
*
pView
);
const
SdrView
*
pView
);
~
SvxMeasureDialog
();
};
};
#endif // INCLUDED_CUI_SOURCE_INC_MEASURE_HXX
#endif // INCLUDED_CUI_SOURCE_INC_MEASURE_HXX
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
cui/source/options/cuisrchdlg.cxx
Dosyayı görüntüle @
c6d1938f
...
@@ -52,26 +52,19 @@ SvxJSearchOptionsDialog::SvxJSearchOptionsDialog(Window *pParent,
...
@@ -52,26 +52,19 @@ SvxJSearchOptionsDialog::SvxJSearchOptionsDialog(Window *pParent,
:
SfxSingleTabDialog
(
pParent
,
rOptionsSet
)
:
SfxSingleTabDialog
(
pParent
,
rOptionsSet
)
,
nInitialTlFlags
(
nInitialFlags
)
,
nInitialTlFlags
(
nInitialFlags
)
{
{
// pPage will be implicitly destroyed by the
// SfxSingleTabDialog destructor
pPage
=
(
SvxJSearchOptionsPage
*
)
pPage
=
(
SvxJSearchOptionsPage
*
)
SvxJSearchOptionsPage
::
Create
(
get_content_area
(),
rOptionsSet
);
SvxJSearchOptionsPage
::
Create
(
get_content_area
(),
rOptionsSet
);
setTabPage
(
pPage
);
//! implicitly calls pPage->Reset(...)!
setTabPage
(
pPage
);
//! implicitly calls pPage->Reset(...)!
pPage
->
EnableSaveOptions
(
false
);
pPage
->
EnableSaveOptions
(
false
);
}
}
SvxJSearchOptionsDialog
::~
SvxJSearchOptionsDialog
()
{
// pPage will be implicitly destroyed by the
// SfxNoLayoutSingleTabDialog destructor
}
void
SvxJSearchOptionsDialog
::
Activate
()
void
SvxJSearchOptionsDialog
::
Activate
()
{
{
pPage
->
SetTransliterationFlags
(
nInitialTlFlags
);
pPage
->
SetTransliterationFlags
(
nInitialTlFlags
);
}
}
sal_Int32
SvxJSearchOptionsDialog
::
GetTransliterationFlags
()
const
sal_Int32
SvxJSearchOptionsDialog
::
GetTransliterationFlags
()
const
{
{
return
pPage
->
GetTransliterationFlags
();
return
pPage
->
GetTransliterationFlags
();
...
...
cui/source/tabpages/measure.cxx
Dosyayı görüntüle @
c6d1938f
...
@@ -73,16 +73,6 @@ SvxMeasureDialog::SvxMeasureDialog( Window* pParent, const SfxItemSet& rInAttrs,
...
@@ -73,16 +73,6 @@ SvxMeasureDialog::SvxMeasureDialog( Window* pParent, const SfxItemSet& rInAttrs,
SetText
(
CUI_RESSTR
(
RID_SVXSTR_DIMENSION_LINE
));
SetText
(
CUI_RESSTR
(
RID_SVXSTR_DIMENSION_LINE
));
}
}
/*************************************************************************
|*
|* Dtor
|*
\************************************************************************/
SvxMeasureDialog
::~
SvxMeasureDialog
()
{
}
/*************************************************************************
/*************************************************************************
|*
|*
|* Tabpage for changing measure-attributes
|* Tabpage for changing measure-attributes
...
...
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