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
0301abbb
Kaydet (Commit)
0301abbb
authored
Haz 03, 2014
tarafından
Caolán McNamara
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
coverity#1219801 Uncaught exception
Change-Id: I372c1891e41510c24daf256d00f3ca98e8a374a9
üst
c087b60b
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
17 additions
and
3 deletions
+17
-3
indexfieldscontrol.cxx
dbaccess/source/ui/dlg/indexfieldscontrol.cxx
+9
-0
moduleimagemanager.hxx
framework/inc/uiconfiguration/moduleimagemanager.hxx
+4
-1
moduleimagemanager.cxx
framework/source/uiconfiguration/moduleimagemanager.cxx
+3
-1
XImageManager.idl
offapi/com/sun/star/ui/XImageManager.idl
+1
-1
No files found.
dbaccess/source/ui/dlg/indexfieldscontrol.cxx
Dosyayı görüntüle @
0301abbb
...
...
@@ -206,6 +206,8 @@ namespace dbaui
void
IndexFieldsControl
::
Init
(
const
Sequence
<
OUString
>&
_rAvailableFields
)
{
fprintf
(
stderr
,
" _rAvailableFields len is %d
\n
"
,
_rAvailableFields
.
getLength
());
RemoveColumns
();
// for the width: both columns together should be somewhat smaller than the whole window (without the scrollbar)
...
...
@@ -235,6 +237,9 @@ namespace dbaui
m_pSortingCell
->
InsertEntry
(
m_sAscendingText
);
m_pSortingCell
->
InsertEntry
(
m_sDescendingText
);
m_pSortingCell
->
SetHelpId
(
HID_DLGINDEX_INDEXDETAILS_SORTORDER
);
m_pSortingCell
->
Show
();
fprintf
(
stderr
,
"created m_pSortingCell %p
\n
"
,
m_pSortingCell
);
nFieldNameWidth
-=
nSortOrderColumnWidth
;
}
...
...
@@ -253,7 +258,11 @@ namespace dbaui
const
OUString
*
pFields
=
_rAvailableFields
.
getConstArray
();
const
OUString
*
pFieldsEnd
=
pFields
+
_rAvailableFields
.
getLength
();
for
(;
pFields
<
pFieldsEnd
;
++
pFields
)
{
fprintf
(
stderr
,
"foo is %s
\n
"
,
OUStringToOString
(
*
pFields
,
RTL_TEXTENCODING_UTF8
).
getStr
());
m_pFieldNameCell
->
InsertEntry
(
*
pFields
);
}
m_pFieldNameCell
->
Show
();
}
CellController
*
IndexFieldsControl
::
GetController
(
long
_nRow
,
sal_uInt16
_nColumnId
)
...
...
framework/inc/uiconfiguration/moduleimagemanager.hxx
Dosyayı görüntüle @
0301abbb
...
...
@@ -72,7 +72,10 @@ namespace framework
virtual
void
SAL_CALL
initialize
(
const
::
com
::
sun
::
star
::
uno
::
Sequence
<
::
com
::
sun
::
star
::
uno
::
Any
>&
aArguments
)
throw
(
::
com
::
sun
::
star
::
uno
::
Exception
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
,
std
::
exception
)
SAL_OVERRIDE
;
// XImageManager
virtual
void
SAL_CALL
reset
()
throw
(
::
com
::
sun
::
star
::
uno
::
RuntimeException
,
std
::
exception
)
SAL_OVERRIDE
;
virtual
void
SAL_CALL
reset
()
throw
(
css
::
lang
::
IllegalAccessException
,
css
::
uno
::
RuntimeException
,
std
::
exception
)
SAL_OVERRIDE
;
virtual
::
com
::
sun
::
star
::
uno
::
Sequence
<
OUString
>
SAL_CALL
getAllImageNames
(
::
sal_Int16
nImageType
)
throw
(
::
com
::
sun
::
star
::
uno
::
RuntimeException
,
std
::
exception
)
SAL_OVERRIDE
;
virtual
sal_Bool
SAL_CALL
hasImage
(
::
sal_Int16
nImageType
,
const
OUString
&
aCommandURL
)
throw
(
::
com
::
sun
::
star
::
lang
::
IllegalArgumentException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
,
std
::
exception
)
SAL_OVERRIDE
;
virtual
::
com
::
sun
::
star
::
uno
::
Sequence
<
::
com
::
sun
::
star
::
uno
::
Reference
<
::
com
::
sun
::
star
::
graphic
::
XGraphic
>
>
SAL_CALL
getImages
(
::
sal_Int16
nImageType
,
const
::
com
::
sun
::
star
::
uno
::
Sequence
<
OUString
>&
aCommandURLSequence
)
throw
(
::
com
::
sun
::
star
::
lang
::
IllegalArgumentException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
,
std
::
exception
)
SAL_OVERRIDE
;
...
...
framework/source/uiconfiguration/moduleimagemanager.cxx
Dosyayı görüntüle @
0301abbb
...
...
@@ -100,7 +100,9 @@ void SAL_CALL ModuleImageManager::initialize( const Sequence< Any >& aArguments
// XImageManager
void
SAL_CALL
ModuleImageManager
::
reset
()
throw
(
::
com
::
sun
::
star
::
uno
::
RuntimeException
,
std
::
exception
)
throw
(
css
::
lang
::
IllegalAccessException
,
css
::
uno
::
RuntimeException
,
std
::
exception
)
{
m_pImpl
->
reset
();
}
...
...
offapi/com/sun/star/ui/XImageManager.idl
Dosyayı görüntüle @
0301abbb
...
...
@@ -49,7 +49,7 @@ interface XImageManager
This
means
that
all
user
images
of
the
instance
will
be
removed
.
</
p
>
*/
void
reset
()
;
void
reset
()
raises
(
com
::
sun
::
star
::
lang
::
IllegalArgumentException
)
;
/**
retrieves
the
list
of
command
URLs
which
have
images
associated
.
...
...
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