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
19b18c40
Kaydet (Commit)
19b18c40
authored
Haz 18, 2013
tarafından
Caolán McNamara
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
don't need explicit help handlers anymore
Change-Id: I5333ff8c4e50cbc4374b937bc8d7617c3b99ee97
üst
f0f8eedf
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
0 additions
and
16 deletions
+0
-16
dialog.hxx
starmath/inc/dialog.hxx
+0
-2
helpids.h
starmath/inc/helpids.h
+0
-1
dialog.cxx
starmath/source/dialog.cxx
+0
-13
No files found.
starmath/inc/dialog.hxx
Dosyayı görüntüle @
19b18c40
...
...
@@ -127,11 +127,9 @@ class SmFontSizeDialog : public ModalDialog
MetricField
*
m_pFunctionSize
;
MetricField
*
m_pOperatorSize
;
MetricField
*
m_pBorderSize
;
HelpButton
*
m_pHelpButton1
;
PushButton
*
m_pDefaultButton
;
DECL_LINK
(
DefaultButtonClickHdl
,
Button
*
);
DECL_LINK
(
HelpButtonClickHdl
,
Button
*
);
public
:
SmFontSizeDialog
(
Window
*
pParent
);
...
...
starmath/inc/helpids.h
Dosyayı görüntüle @
19b18c40
...
...
@@ -20,7 +20,6 @@
#define STARMATH_HELPIDS_H
#define HID_SMA_FONTDIALOG "STARMATH_HID_SMA_FONTDIALOG"
#define HID_SMA_FONTSIZEDIALOG "STARMATH_HID_SMA_FONTSIZEDIALOG"
#define HID_SMA_FONTTYPEDIALOG "STARMATH_HID_SMA_FONTTYPEDIALOG"
#define HID_SMA_DISTANCEDIALOG "STARMATH_HID_SMA_DISTANCEDIALOG"
#define HID_SMA_SYMDEFINEDIALOG "STARMATH_HID_SMA_SYMDEFINEDIALOG"
...
...
starmath/source/dialog.cxx
Dosyayı görüntüle @
19b18c40
...
...
@@ -440,17 +440,6 @@ IMPL_LINK( SmFontSizeDialog, DefaultButtonClickHdl, Button *, EMPTYARG /*pButton
return
0
;
}
IMPL_LINK
(
SmFontSizeDialog
,
HelpButtonClickHdl
,
Button
*
,
EMPTYARG
/*pButton*/
)
{
// start help system
Help
*
pHelp
=
Application
::
GetHelp
();
if
(
pHelp
)
{
pHelp
->
Start
(
OUString
(
"HID_SMA_FONTSIZEDIALOG"
),
m_pHelpButton1
);
}
return
0
;
}
SmFontSizeDialog
::
SmFontSizeDialog
(
Window
*
pParent
)
:
ModalDialog
(
pParent
,
"FontSizeDialog"
,
"modules/smath/ui/fontsizedialog.ui"
)
{
...
...
@@ -460,11 +449,9 @@ SmFontSizeDialog::SmFontSizeDialog(Window * pParent)
get
(
m_pOperatorSize
,
"spinB_operator"
);
get
(
m_pBorderSize
,
"spinB_limit"
);
get
(
m_pBaseSize
,
"spinB_baseSize"
);
get
(
m_pHelpButton1
,
"help"
);
get
(
m_pDefaultButton
,
"default"
);
m_pDefaultButton
->
SetClickHdl
(
LINK
(
this
,
SmFontSizeDialog
,
DefaultButtonClickHdl
));
m_pHelpButton1
->
SetClickHdl
(
LINK
(
this
,
SmFontSizeDialog
,
HelpButtonClickHdl
));
}
...
...
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