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
cb029063
Kaydet (Commit)
cb029063
authored
Eki 19, 2015
tarafından
Stephan Bergmann
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
loplugin:defaultparams
Change-Id: Ief9af764ce6e75a5f2cfdd33d836f007e0f52cd3
üst
ad6e444a
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
18 additions
and
18 deletions
+18
-18
standardcontrol.cxx
extensions/source/propctrlr/standardcontrol.cxx
+2
-2
sanedlg.cxx
extensions/source/scanner/sanedlg.cxx
+15
-15
updatecheckui.cxx
extensions/source/update/ui/updatecheckui.cxx
+1
-1
No files found.
extensions/source/propctrlr/standardcontrol.cxx
Dosyayı görüntüle @
cb029063
...
...
@@ -692,7 +692,7 @@ namespace pcr
if
(
(
nWinStyle
&
WB_READONLY
)
!=
0
)
{
getTypedControlWindow
()
->
SetReadOnly
();
getTypedControlWindow
()
->
Enable
(
true
);
getTypedControlWindow
()
->
Enable
();
}
}
...
...
@@ -801,7 +801,7 @@ namespace pcr
if
(
(
nWinStyle
&
WB_READONLY
)
!=
0
)
{
getTypedControlWindow
()
->
SetReadOnly
();
getTypedControlWindow
()
->
Enable
(
true
);
getTypedControlWindow
()
->
Enable
();
}
}
...
...
extensions/source/scanner/sanedlg.cxx
Dosyayı görüntüle @
cb029063
...
...
@@ -396,7 +396,7 @@ void SaneDlg::InitFields()
if
(
mrSane
.
GetOptionValue
(
nOption
,
fRes
)
)
{
mpReslBox
->
Enable
(
true
);
mpReslBox
->
Enable
();
mpReslBox
->
SetValue
(
(
long
)
fRes
);
double
*
pDouble
=
NULL
;
...
...
@@ -516,7 +516,7 @@ void SaneDlg::InitFields()
case
3
:
aMaxBottomRight
.
Y
()
=
(
int
)
fValue
;
break
;
}
}
pField
->
Enable
(
true
);
pField
->
Enable
();
}
else
{
...
...
@@ -754,8 +754,8 @@ IMPL_LINK_TYPED( SaneDlg, OptionsBoxSelectHdl, SvTreeListBox*, pBox, void )
mpVectorBox
->
SetMin
(
1
);
mpVectorBox
->
SetMax
(
mrSane
.
GetOptionElements
(
mnCurrentOption
)
);
mpVectorBox
->
Show
(
true
);
mpVectorTxt
->
Show
(
true
);
mpVectorBox
->
Show
();
mpVectorTxt
->
Show
();
}
else
{
...
...
@@ -987,7 +987,7 @@ void SaneDlg::EstablishBoolOption()
{
mpBoolCheckBox
->
SetText
(
mrSane
.
GetOptionName
(
mnCurrentOption
)
);
mpBoolCheckBox
->
Check
(
bValue
);
mpBoolCheckBox
->
Show
(
true
);
mpBoolCheckBox
->
Show
();
}
}
...
...
@@ -1000,9 +1000,9 @@ void SaneDlg::EstablishStringOption()
if
(
bSuccess
)
{
mpOptionDescTxt
->
SetText
(
mrSane
.
GetOptionName
(
mnCurrentOption
)
);
mpOptionDescTxt
->
Show
(
true
);
mpOptionDescTxt
->
Show
();
mpStringEdit
->
SetText
(
OStringToOUString
(
aValue
,
osl_getThreadTextEncoding
()));
mpStringEdit
->
Show
(
true
);
mpStringEdit
->
Show
();
}
}
...
...
@@ -1015,9 +1015,9 @@ void SaneDlg::EstablishStringRange()
OString
aValue
;
mrSane
.
GetOptionValue
(
mnCurrentOption
,
aValue
);
mpStringRangeBox
->
SelectEntry
(
OStringToOUString
(
aValue
,
osl_getThreadTextEncoding
()));
mpStringRangeBox
->
Show
(
true
);
mpStringRangeBox
->
Show
();
mpOptionDescTxt
->
SetText
(
mrSane
.
GetOptionName
(
mnCurrentOption
)
);
mpOptionDescTxt
->
Show
(
true
);
mpOptionDescTxt
->
Show
();
}
void
SaneDlg
::
EstablishQuantumRange
()
...
...
@@ -1053,12 +1053,12 @@ void SaneDlg::EstablishQuantumRange()
sprintf
(
pBuf
,
"%g"
,
fValue
);
mpQuantumRangeBox
->
SelectEntry
(
OUString
(
pBuf
,
strlen
(
pBuf
),
osl_getThreadTextEncoding
()
)
);
}
mpQuantumRangeBox
->
Show
(
true
);
mpQuantumRangeBox
->
Show
();
OUString
aText
(
mrSane
.
GetOptionName
(
mnCurrentOption
)
);
aText
+=
" "
;
aText
+=
mrSane
.
GetOptionUnitName
(
mnCurrentOption
);
mpOptionDescTxt
->
SetText
(
aText
);
mpOptionDescTxt
->
Show
(
true
);
mpOptionDescTxt
->
Show
();
}
}
...
...
@@ -1081,17 +1081,17 @@ void SaneDlg::EstablishNumericOption()
aText
+=
OUString
(
pBuf
,
strlen
(
pBuf
),
osl_getThreadTextEncoding
()
);
}
mpOptionDescTxt
->
SetText
(
aText
);
mpOptionDescTxt
->
Show
(
true
);
mpOptionDescTxt
->
Show
();
sprintf
(
pBuf
,
"%g"
,
fValue
);
mpNumericEdit
->
SetText
(
OUString
(
pBuf
,
strlen
(
pBuf
),
osl_getThreadTextEncoding
()
)
);
mpNumericEdit
->
Show
(
true
);
mpNumericEdit
->
Show
();
}
void
SaneDlg
::
EstablishButtonOption
()
{
mpOptionDescTxt
->
SetText
(
mrSane
.
GetOptionName
(
mnCurrentOption
)
);
mpOptionDescTxt
->
Show
(
true
);
mpButtonOption
->
Show
(
true
);
mpOptionDescTxt
->
Show
();
mpButtonOption
->
Show
();
}
void
ScanPreview
::
MouseMove
(
const
MouseEvent
&
rMEvt
)
...
...
extensions/source/update/ui/updatecheckui.cxx
Dosyayı görüntüle @
cb029063
...
...
@@ -356,7 +356,7 @@ void UpdateCheckUI::AddMenuBarIcon( SystemWindow *pSysWin, bool bAddEventHdl )
mpBubbleWin
=
GetBubbleWindow
();
if
(
mpBubbleWin
)
{
mpBubbleWin
->
Show
(
true
);
mpBubbleWin
->
Show
();
maTimeoutTimer
.
Start
();
}
mbShowBubble
=
false
;
...
...
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