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
50fffcaa
Kaydet (Commit)
50fffcaa
authored
Agu 20, 2014
tarafından
Caolán McNamara
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Infoboxen are no longer loaded from resource files
Change-Id: If387291e9e145ee36338b1e560f18889c3b62674
üst
d4a615bf
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
1 addition
and
16 deletions
+1
-16
rcid.h
include/tools/rcid.h
+1
-1
msgbox.hxx
include/vcl/msgbox.hxx
+0
-1
rscinit.cxx
rsc/source/parser/rscinit.cxx
+0
-8
msgbox.cxx
vcl/source/window/msgbox.cxx
+0
-6
No files found.
include/tools/rcid.h
Dosyayı görüntüle @
50fffcaa
...
@@ -48,7 +48,7 @@
...
@@ -48,7 +48,7 @@
#define RSC_IMAGELIST (RSC_NOTYPE + 0x24)
#define RSC_IMAGELIST (RSC_NOTYPE + 0x24)
#define RSC_MESSBOX (RSC_NOTYPE + 0x30)
#define RSC_MESSBOX (RSC_NOTYPE + 0x30)
#define RSC_INFOBOX (RSC_NOTYPE + 0x31)
#define RSC_WARNINGBOX (RSC_NOTYPE + 0x32)
#define RSC_WARNINGBOX (RSC_NOTYPE + 0x32)
#define RSC_QUERYBOX (RSC_NOTYPE + 0x34)
#define RSC_QUERYBOX (RSC_NOTYPE + 0x34)
...
...
include/vcl/msgbox.hxx
Dosyayı görüntüle @
50fffcaa
...
@@ -77,7 +77,6 @@ private:
...
@@ -77,7 +77,6 @@ private:
public
:
public
:
InfoBox
(
Window
*
pParent
,
const
OUString
&
rMessage
);
InfoBox
(
Window
*
pParent
,
const
OUString
&
rMessage
);
InfoBox
(
Window
*
pParent
,
const
ResId
&
rResId
);
InfoBox
(
Window
*
pParent
,
WinBits
nStyle
,
InfoBox
(
Window
*
pParent
,
WinBits
nStyle
,
const
OUString
&
rMessage
);
const
OUString
&
rMessage
);
...
...
rsc/source/parser/rscinit.cxx
Dosyayı görüntüle @
50fffcaa
...
@@ -94,7 +94,6 @@ void RscTypCont::Init()
...
@@ -94,7 +94,6 @@ void RscTypCont::Init()
RscTop
*
pClassMenuItem
;
RscTop
*
pClassMenuItem
;
RscTop
*
pClassMenu
;
RscTop
*
pClassMenu
;
RscTop
*
pClassMessBox
;
RscTop
*
pClassMessBox
;
RscTop
*
pClassInfoBox
;
RscTop
*
pClassWarningBox
;
RscTop
*
pClassWarningBox
;
RscTop
*
pClassQueryBox
;
RscTop
*
pClassQueryBox
;
RscTop
*
pClassSplitter
;
RscTop
*
pClassSplitter
;
...
@@ -471,13 +470,6 @@ void RscTypCont::Init()
...
@@ -471,13 +470,6 @@ void RscTypCont::Init()
pMessDefButton
);
pMessDefButton
);
pRoot
->
Insert
(
pClassMessBox
);
pRoot
->
Insert
(
pClassMessBox
);
// Klasse anlegen
nId
=
pHS
->
getID
(
"InfoBox"
);
pClassInfoBox
=
new
RscClass
(
nId
,
RSC_INFOBOX
,
pClassMessBox
);
pClassInfoBox
->
SetCallPar
(
*
pWinPar1
,
*
pWinPar2
,
*
pWinParType
);
aNmTb
.
Put
(
nId
,
CLASSNAME
,
pClassInfoBox
);
pRoot
->
Insert
(
pClassInfoBox
);
// Klasse anlegen
// Klasse anlegen
nId
=
pHS
->
getID
(
"WarningBox"
);
nId
=
pHS
->
getID
(
"WarningBox"
);
pClassWarningBox
=
new
RscClass
(
nId
,
RSC_WARNINGBOX
,
pClassMessBox
);
pClassWarningBox
=
new
RscClass
(
nId
,
RSC_WARNINGBOX
,
pClassMessBox
);
...
...
vcl/source/window/msgbox.cxx
Dosyayı görüntüle @
50fffcaa
...
@@ -420,12 +420,6 @@ InfoBox::InfoBox( Window* pParent, const OUString& rMessage ) :
...
@@ -420,12 +420,6 @@ InfoBox::InfoBox( Window* pParent, const OUString& rMessage ) :
ImplInitInfoBoxData
();
ImplInitInfoBoxData
();
}
}
InfoBox
::
InfoBox
(
Window
*
pParent
,
const
ResId
&
rResId
)
:
MessBox
(
pParent
,
rResId
.
SetRT
(
RSC_INFOBOX
)
)
{
ImplInitInfoBoxData
();
}
InfoBox
::
InfoBox
(
Window
*
pParent
,
WinBits
nStyle
,
const
OUString
&
rMessage
)
:
InfoBox
::
InfoBox
(
Window
*
pParent
,
WinBits
nStyle
,
const
OUString
&
rMessage
)
:
MessBox
(
pParent
,
nStyle
,
OUString
(),
rMessage
)
MessBox
(
pParent
,
nStyle
,
OUString
(),
rMessage
)
{
{
...
...
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