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
041fc1f5
Kaydet (Commit)
041fc1f5
authored
Kas 30, 2011
tarafından
Ivan Timofeev
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
fdo#34641: move initial focus to printer selection
üst
7d3f21b2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
6 deletions
+7
-6
printdlg.hxx
vcl/inc/printdlg.hxx
+4
-3
printdlg.cxx
vcl/source/window/printdlg.cxx
+3
-3
No files found.
vcl/inc/printdlg.hxx
Dosyayı görüntüle @
041fc1f5
...
@@ -212,9 +212,6 @@ namespace vcl
...
@@ -212,9 +212,6 @@ namespace vcl
void
setupLayout
();
void
setupLayout
();
};
};
OKButton
maOKButton
;
CancelButton
maCancelButton
;
HelpButton
maHelpButton
;
PrintPreviewWindow
maPreviewWindow
;
PrintPreviewWindow
maPreviewWindow
;
NumericField
maPageEdit
;
NumericField
maPageEdit
;
FixedText
maNumPagesText
;
FixedText
maNumPagesText
;
...
@@ -228,6 +225,10 @@ namespace vcl
...
@@ -228,6 +225,10 @@ namespace vcl
FixedLine
maButtonLine
;
FixedLine
maButtonLine
;
OKButton
maOKButton
;
CancelButton
maCancelButton
;
HelpButton
maHelpButton
;
boost
::
shared_ptr
<
PrinterController
>
maPController
;
boost
::
shared_ptr
<
PrinterController
>
maPController
;
rtl
::
OUString
maPageStr
;
rtl
::
OUString
maPageStr
;
...
...
vcl/source/window/printdlg.cxx
Dosyayı görüntüle @
041fc1f5
...
@@ -718,9 +718,6 @@ void PrintDialog::OutputOptPage::storeToSettings()
...
@@ -718,9 +718,6 @@ void PrintDialog::OutputOptPage::storeToSettings()
PrintDialog
::
PrintDialog
(
Window
*
i_pParent
,
const
boost
::
shared_ptr
<
PrinterController
>&
i_rController
)
PrintDialog
::
PrintDialog
(
Window
*
i_pParent
,
const
boost
::
shared_ptr
<
PrinterController
>&
i_rController
)
:
ModalDialog
(
i_pParent
,
VclResId
(
SV_DLG_PRINT
)
)
:
ModalDialog
(
i_pParent
,
VclResId
(
SV_DLG_PRINT
)
)
,
maOKButton
(
this
,
VclResId
(
SV_PRINT_OK
)
)
,
maCancelButton
(
this
,
VclResId
(
SV_PRINT_CANCEL
)
)
,
maHelpButton
(
this
,
VclResId
(
SV_PRINT_HELP
)
)
,
maPreviewWindow
(
this
,
VclResId
(
SV_PRINT_PAGE_PREVIEW
)
)
,
maPreviewWindow
(
this
,
VclResId
(
SV_PRINT_PAGE_PREVIEW
)
)
,
maPageEdit
(
this
,
VclResId
(
SV_PRINT_PAGE_EDIT
)
)
,
maPageEdit
(
this
,
VclResId
(
SV_PRINT_PAGE_EDIT
)
)
,
maNumPagesText
(
this
,
VclResId
(
SV_PRINT_PAGE_TXT
)
)
,
maNumPagesText
(
this
,
VclResId
(
SV_PRINT_PAGE_TXT
)
)
...
@@ -731,6 +728,9 @@ PrintDialog::PrintDialog( Window* i_pParent, const boost::shared_ptr<PrinterCont
...
@@ -731,6 +728,9 @@ PrintDialog::PrintDialog( Window* i_pParent, const boost::shared_ptr<PrinterCont
,
maJobPage
(
&
maTabCtrl
,
VclResId
(
SV_PRINT_TAB_JOB
)
)
,
maJobPage
(
&
maTabCtrl
,
VclResId
(
SV_PRINT_TAB_JOB
)
)
,
maOptionsPage
(
&
maTabCtrl
,
VclResId
(
SV_PRINT_TAB_OPT
)
)
,
maOptionsPage
(
&
maTabCtrl
,
VclResId
(
SV_PRINT_TAB_OPT
)
)
,
maButtonLine
(
this
,
VclResId
(
SV_PRINT_BUTTONLINE
)
)
,
maButtonLine
(
this
,
VclResId
(
SV_PRINT_BUTTONLINE
)
)
,
maOKButton
(
this
,
VclResId
(
SV_PRINT_OK
)
)
,
maCancelButton
(
this
,
VclResId
(
SV_PRINT_CANCEL
)
)
,
maHelpButton
(
this
,
VclResId
(
SV_PRINT_HELP
)
)
,
maPController
(
i_rController
)
,
maPController
(
i_rController
)
,
maNoPageStr
(
String
(
VclResId
(
SV_PRINT_NOPAGES
)
)
)
,
maNoPageStr
(
String
(
VclResId
(
SV_PRINT_NOPAGES
)
)
)
,
mnCurPage
(
0
)
,
mnCurPage
(
0
)
...
...
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