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
ba9da7f0
Kaydet (Commit)
ba9da7f0
authored
Şub 17, 2013
tarafından
Caolán McNamara
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
coverity#984041 Uninitialized scalar variable
Change-Id: Ia726b08717d26b439f46f95dedfdb30e27e8499e
üst
3743cdbb
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
16 additions
and
12 deletions
+16
-12
PresenterScreen.cxx
sdext/source/presenter/PresenterScreen.cxx
+10
-10
PresenterScreen.hxx
sdext/source/presenter/PresenterScreen.hxx
+6
-2
No files found.
sdext/source/presenter/PresenterScreen.cxx
Dosyayı görüntüle @
ba9da7f0
...
...
@@ -396,14 +396,14 @@ void PresenterScreen::InitializePresenterScreen (void)
mpPresenterController
->
GetWindowManager
()
->
RestoreViewMode
();
}
catch
(
RuntimeException
&
)
catch
(
const
RuntimeException
&
)
{
xCC
->
restoreConfiguration
(
mxSavedConfiguration
);
}
xCC
->
unlock
();
}
}
catch
(
Exception
&
)
catch
(
const
Exception
&
)
{
}
}
...
...
@@ -501,7 +501,7 @@ sal_Int32 PresenterScreen::GetPresenterScreenNumber (
return
-
1
;
}
}
catch
(
beans
::
UnknownPropertyException
&
)
catch
(
const
beans
::
UnknownPropertyException
&
)
{
OSL_ASSERT
(
false
);
// For some reason we can not access the screen number. Use
...
...
@@ -608,7 +608,7 @@ void PresenterScreen::SetupPaneFactory (const Reference<XComponentContext>& rxCo
mxController
,
mpPresenterController
);
}
catch
(
RuntimeException
&
)
catch
(
const
RuntimeException
&
)
{
OSL_ASSERT
(
false
);
}
...
...
@@ -624,7 +624,7 @@ void PresenterScreen::SetupViewFactory (const Reference<XComponentContext>& rxCo
mxController
,
mpPresenterController
);
}
catch
(
RuntimeException
&
)
catch
(
const
RuntimeException
&
)
{
OSL_ASSERT
(
false
);
}
...
...
@@ -647,7 +647,7 @@ void PresenterScreen::SetupConfiguration (
OUString
(
"Presenter/CurrentLayout"
))
>>=
sLayoutName
;
ProcessLayout
(
aConfiguration
,
sLayoutName
,
rxContext
,
rxAnchorId
);
}
catch
(
RuntimeException
&
)
catch
(
const
RuntimeException
&
)
{
}
}
...
...
@@ -701,7 +701,7 @@ void PresenterScreen::ProcessLayout (
rxContext
,
rxAnchorId
));
}
catch
(
RuntimeException
&
)
catch
(
const
RuntimeException
&
)
{
}
}
...
...
@@ -726,7 +726,7 @@ void PresenterScreen::ProcessViewDescriptions (
aProperties
,
::
boost
::
bind
(
&
PresenterScreen
::
ProcessViewDescription
,
this
,
_1
,
_2
));
}
catch
(
RuntimeException
&
)
catch
(
const
RuntimeException
&
)
{
OSL_ASSERT
(
false
);
}
...
...
@@ -798,8 +798,8 @@ void PresenterScreen::ProcessViewDescription (
if
(
aViewDescriptor
.
msAccessibleTitle
.
isEmpty
())
aViewDescriptor
.
msAccessibleTitle
=
aViewDescriptor
.
msTitle
;
maViewDescriptors
[
sViewURL
]
=
aViewDescriptor
;
}
catch
(
Exception
&
)
}
catch
(
const
Exception
&
)
{
OSL_ASSERT
(
false
);
}
...
...
sdext/source/presenter/PresenterScreen.hxx
Dosyayı görüntüle @
ba9da7f0
...
...
@@ -145,9 +145,13 @@ private:
class
ViewDescriptor
{
public
:
::
rtl
::
OUString
msTitle
;
::
rtl
::
OUString
msAccessibleTitle
;
OUString
msTitle
;
OUString
msAccessibleTitle
;
bool
mbIsOpaque
;
ViewDescriptor
()
:
mbIsOpaque
(
false
)
{
}
};
typedef
::
std
::
map
<
rtl
::
OUString
,
ViewDescriptor
>
ViewDescriptorContainer
;
ViewDescriptorContainer
maViewDescriptors
;
...
...
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