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
c234d4c2
Kaydet (Commit)
c234d4c2
authored
Şub 04, 2014
tarafından
Caolán McNamara
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
swap arguments around to smooth .ui conversions
Change-Id: Ifa2a1b30db70063521c156a1d416fbad45890546
üst
8bc81f6f
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
6 additions
and
6 deletions
+6
-6
FieldControls.hxx
dbaccess/source/ui/inc/FieldControls.hxx
+1
-1
SqlNameEdit.hxx
dbaccess/source/ui/inc/SqlNameEdit.hxx
+4
-4
TEditControl.cxx
dbaccess/source/ui/tabledesign/TEditControl.cxx
+1
-1
No files found.
dbaccess/source/ui/inc/FieldControls.hxx
Dosyayı görüntüle @
c234d4c2
...
...
@@ -62,7 +62,7 @@ namespace dbaui
sal_uInt16
nHelpId
,
short
nPosition
,
WinBits
nWinStyle
)
:
OSQLNameEdit
(
pParent
,
_rAllowedChars
,
nWinStyle
)
:
OSQLNameEdit
(
pParent
,
nWinStyle
,
_rAllowedChars
)
,
m_nPos
(
nPosition
)
{
m_strHelpText
=
ModuleRes
(
nHelpId
);
...
...
dbaccess/source/ui/inc/SqlNameEdit.hxx
Dosyayı görüntüle @
c234d4c2
...
...
@@ -56,7 +56,7 @@ namespace dbaui
,
public
OSQLNameChecker
{
public
:
OSQLNameEdit
(
Window
*
_pParent
,
const
OUString
&
_rAllowedChars
,
WinBits
nStyle
=
WB_BORDER
)
OSQLNameEdit
(
Window
*
_pParent
,
WinBits
nStyle
=
WB_BORDER
,
const
OUString
&
_rAllowedChars
=
OUString
()
)
:
Edit
(
_pParent
,
nStyle
)
,
OSQLNameChecker
(
_rAllowedChars
)
{
...
...
@@ -77,14 +77,14 @@ namespace dbaui
,
public
OSQLNameChecker
{
public
:
OSQLNameComboBox
(
Window
*
_pParent
,
const
OUString
&
_rAllowedChars
,
WinBits
nStyle
=
WB_BORDER
)
OSQLNameComboBox
(
Window
*
_pParent
,
WinBits
nStyle
=
WB_BORDER
,
const
OUString
&
_rAllowedChars
=
OUString
()
)
:
ComboBox
(
_pParent
,
nStyle
)
,
OSQLNameChecker
(
_rAllowedChars
)
,
OSQLNameChecker
(
_rAllowedChars
)
{
}
OSQLNameComboBox
(
Window
*
_pParent
,
const
ResId
&
_rRes
,
const
OUString
&
_rAllowedChars
=
OUString
())
:
ComboBox
(
_pParent
,
_rRes
)
,
OSQLNameChecker
(
_rAllowedChars
)
,
OSQLNameChecker
(
_rAllowedChars
)
{
}
...
...
dbaccess/source/ui/tabledesign/TEditControl.cxx
Dosyayı görüntüle @
c234d4c2
...
...
@@ -229,7 +229,7 @@ void OTableEditorCtrl::InitCellController()
OSL_FAIL
(
"getMaxColumnNameLength"
);
}
pNameCell
=
new
OSQLNameEdit
(
&
GetDataWindow
(),
sExtraNameChars
,
WB_LEFT
);
pNameCell
=
new
OSQLNameEdit
(
&
GetDataWindow
(),
WB_LEFT
,
sExtraNameChars
);
pNameCell
->
SetMaxTextLen
(
nMaxTextLen
);
pNameCell
->
setCheck
(
isSQL92CheckEnabled
(
xCon
)
);
...
...
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