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
d4a615bf
Kaydet (Commit)
d4a615bf
authored
Agu 20, 2014
tarafından
Caolán McNamara
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
ErrorBoxen are no longer loaded from resource files
Change-Id: I099258e449d0155154d60a839f9495236cb48cbb
üst
3ddfcd70
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 @
d4a615bf
...
@@ -50,7 +50,7 @@
...
@@ -50,7 +50,7 @@
#define RSC_MESSBOX (RSC_NOTYPE + 0x30)
#define RSC_MESSBOX (RSC_NOTYPE + 0x30)
#define RSC_INFOBOX (RSC_NOTYPE + 0x31)
#define RSC_INFOBOX (RSC_NOTYPE + 0x31)
#define RSC_WARNINGBOX (RSC_NOTYPE + 0x32)
#define RSC_WARNINGBOX (RSC_NOTYPE + 0x32)
#define RSC_ERRORBOX (RSC_NOTYPE + 0x33)
#define RSC_QUERYBOX (RSC_NOTYPE + 0x34)
#define RSC_QUERYBOX (RSC_NOTYPE + 0x34)
#define RSC_WINDOW (RSC_NOTYPE + 0x35)
#define RSC_WINDOW (RSC_NOTYPE + 0x35)
#define RSC_SYSWINDOW (RSC_NOTYPE + 0x36)
#define RSC_SYSWINDOW (RSC_NOTYPE + 0x36)
...
...
include/vcl/msgbox.hxx
Dosyayı görüntüle @
d4a615bf
...
@@ -107,7 +107,6 @@ private:
...
@@ -107,7 +107,6 @@ private:
public
:
public
:
ErrorBox
(
Window
*
pParent
,
WinBits
nStyle
,
ErrorBox
(
Window
*
pParent
,
WinBits
nStyle
,
const
OUString
&
rMessage
);
const
OUString
&
rMessage
);
ErrorBox
(
Window
*
pParent
,
const
ResId
&
rResId
);
static
Image
GetStandardImage
();
static
Image
GetStandardImage
();
};
};
...
...
rsc/source/parser/rscinit.cxx
Dosyayı görüntüle @
d4a615bf
...
@@ -96,7 +96,6 @@ void RscTypCont::Init()
...
@@ -96,7 +96,6 @@ void RscTypCont::Init()
RscTop
*
pClassMessBox
;
RscTop
*
pClassMessBox
;
RscTop
*
pClassInfoBox
;
RscTop
*
pClassInfoBox
;
RscTop
*
pClassWarningBox
;
RscTop
*
pClassWarningBox
;
RscTop
*
pClassErrorBox
;
RscTop
*
pClassQueryBox
;
RscTop
*
pClassQueryBox
;
RscTop
*
pClassSplitter
;
RscTop
*
pClassSplitter
;
RscTop
*
pClassSplitWindow
;
RscTop
*
pClassSplitWindow
;
...
@@ -486,13 +485,6 @@ void RscTypCont::Init()
...
@@ -486,13 +485,6 @@ void RscTypCont::Init()
aNmTb
.
Put
(
nId
,
CLASSNAME
,
pClassWarningBox
);
aNmTb
.
Put
(
nId
,
CLASSNAME
,
pClassWarningBox
);
pRoot
->
Insert
(
pClassWarningBox
);
pRoot
->
Insert
(
pClassWarningBox
);
// Klasse anlegen
nId
=
pHS
->
getID
(
"ErrorBox"
);
pClassErrorBox
=
new
RscClass
(
nId
,
RSC_ERRORBOX
,
pClassMessBox
);
pClassErrorBox
->
SetCallPar
(
*
pWinPar1
,
*
pWinPar2
,
*
pWinParType
);
aNmTb
.
Put
(
nId
,
CLASSNAME
,
pClassErrorBox
);
pRoot
->
Insert
(
pClassErrorBox
);
// Klasse anlegen
// Klasse anlegen
nId
=
pHS
->
getID
(
"QueryBox"
);
nId
=
pHS
->
getID
(
"QueryBox"
);
pClassQueryBox
=
new
RscClass
(
nId
,
RSC_QUERYBOX
,
pClassMessBox
);
pClassQueryBox
=
new
RscClass
(
nId
,
RSC_QUERYBOX
,
pClassMessBox
);
...
...
vcl/source/window/msgbox.cxx
Dosyayı görüntüle @
d4a615bf
...
@@ -489,12 +489,6 @@ ErrorBox::ErrorBox( Window* pParent, WinBits nStyle,
...
@@ -489,12 +489,6 @@ ErrorBox::ErrorBox( Window* pParent, WinBits nStyle,
ImplInitErrorBoxData
();
ImplInitErrorBoxData
();
}
}
ErrorBox
::
ErrorBox
(
Window
*
pParent
,
const
ResId
&
rResId
)
:
MessBox
(
pParent
,
rResId
.
SetRT
(
RSC_ERRORBOX
)
)
{
ImplInitErrorBoxData
();
}
Image
ErrorBox
::
GetStandardImage
()
Image
ErrorBox
::
GetStandardImage
()
{
{
try
try
...
...
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