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
04559833
Kaydet (Commit)
04559833
authored
Tem 02, 2014
tarafından
Caolán McNamara
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
callcatcher: rsc loaded fixedbitmap is no more
Change-Id: Ie111d9ed3534eb8892400d638eac4b38b3904646
üst
f11d6421
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
1 addition
and
42 deletions
+1
-42
rcid.h
include/tools/rcid.h
+1
-1
fixed.hxx
include/vcl/fixed.hxx
+0
-4
rscdb.hxx
rsc/inc/rscdb.hxx
+0
-1
rscicpx.cxx
rsc/source/parser/rscicpx.cxx
+0
-20
rscinit.cxx
rsc/source/parser/rscinit.cxx
+0
-4
fixed.cxx
vcl/source/control/fixed.cxx
+0
-12
No files found.
include/tools/rcid.h
Dosyayı görüntüle @
04559833
...
...
@@ -81,7 +81,7 @@
#define RSC_MULTILISTBOX (RSC_NOTYPE + 0x56)
#define RSC_TEXT (RSC_NOTYPE + 0x57)
#define RSC_FIXEDLINE (RSC_NOTYPE + 0x58)
#define RSC_FIXEDBITMAP (RSC_NOTYPE + 0x59)
#define RSC_FIXEDIMAGE (RSC_NOTYPE + 0x5a)
#define RSC_GROUPBOX (RSC_NOTYPE + 0x5c)
#define RSC_SCROLLBAR (RSC_NOTYPE + 0x5d)
...
...
include/vcl/fixed.hxx
Dosyayı görüntüle @
04559833
...
...
@@ -124,10 +124,7 @@ public:
virtual
Size
GetOptimalSize
()
const
SAL_OVERRIDE
;
};
// - FixedBitmap -
class
VCL_DLLPUBLIC
FixedBitmap
:
public
Control
{
private
:
...
...
@@ -146,7 +143,6 @@ protected:
public
:
explicit
FixedBitmap
(
Window
*
pParent
,
WinBits
nStyle
=
0
);
explicit
FixedBitmap
(
Window
*
pParent
,
const
ResId
&
);
virtual
~
FixedBitmap
();
virtual
void
Paint
(
const
Rectangle
&
rRect
)
SAL_OVERRIDE
;
...
...
rsc/inc/rscdb.hxx
Dosyayı görüntüle @
04559833
...
...
@@ -188,7 +188,6 @@ class RscTypCont
RscTop
*
InitClassMultiListBox
(
RscTop
*
pSuper
);
RscTop
*
InitClassComboBox
(
RscTop
*
pSuper
,
RscArray
*
pStrLst
);
RscTop
*
InitClassFixedText
(
RscTop
*
pSuper
);
RscTop
*
InitClassFixedBitmap
(
RscTop
*
pSuper
,
RscTop
*
pClassBitmap
);
RscTop
*
InitClassFixedImage
(
RscTop
*
pSuper
,
RscTop
*
pClassImage
);
RscTop
*
InitClassRadioButton
(
RscTop
*
pSuper
);
RscTop
*
InitClassKeyCode
(
RscTop
*
pSuper
,
RscEnum
*
pKey
);
...
...
rsc/source/parser/rscicpx.cxx
Dosyayı görüntüle @
04559833
...
...
@@ -750,26 +750,6 @@ RscTop * RscTypCont::InitClassFixedText( RscTop * pSuper )
return
pClassFixedText
;
}
RscTop
*
RscTypCont
::
InitClassFixedBitmap
(
RscTop
*
pSuper
,
RscTop
*
pClassBitmap
)
{
Atom
nId
;
RscTop
*
pClassFixedBitmap
;
// Klasse anlegen
nId
=
pHS
->
getID
(
"FixedBitmap"
);
pClassFixedBitmap
=
new
RscClass
(
nId
,
RSC_FIXEDBITMAP
,
pSuper
);
pClassFixedBitmap
->
SetCallPar
(
*
pWinPar1
,
*
pWinPar2
,
*
pWinParType
);
aNmTb
.
Put
(
nId
,
CLASSNAME
,
pClassFixedBitmap
);
INS_WINBIT
(
pClassFixedBitmap
,
Scale
)
// Variablen anlegen
nId
=
aNmTb
.
Put
(
"Fixed"
,
VARNAME
);
pClassFixedBitmap
->
SetVariable
(
nId
,
pClassBitmap
,
0
,
0
,
RSC_FIXEDBITMAP_BITMAP
);
return
pClassFixedBitmap
;
}
RscTop
*
RscTypCont
::
InitClassFixedImage
(
RscTop
*
pSuper
,
RscTop
*
pClassImage
)
{
Atom
nId
;
...
...
rsc/source/parser/rscinit.cxx
Dosyayı görüntüle @
04559833
...
...
@@ -91,7 +91,6 @@ void RscTypCont::Init()
RscTop
*
pClassMultiListBox
;
RscTop
*
pClassComboBox
;
RscTop
*
pClassFixedText
;
RscTop
*
pClassFixedBitmap
;
RscTop
*
pClassFixedImage
;
RscTop
*
pClassGroupBox
;
RscTop
*
pClassKeyCode
;
...
...
@@ -460,9 +459,6 @@ void RscTypCont::Init()
pClassFixedText
=
InitClassFixedText
(
pClassControl
);
pRoot
->
Insert
(
pClassFixedText
);
pClassFixedBitmap
=
InitClassFixedBitmap
(
pClassControl
,
pClassBitmap
);
pRoot
->
Insert
(
pClassFixedBitmap
);
pClassFixedImage
=
InitClassFixedImage
(
pClassControl
,
pClassImage
);
pRoot
->
Insert
(
pClassFixedImage
);
...
...
vcl/source/control/fixed.cxx
Dosyayı görüntüle @
04559833
...
...
@@ -761,18 +761,6 @@ FixedBitmap::FixedBitmap( Window* pParent, WinBits nStyle ) :
ImplInit
(
pParent
,
nStyle
);
}
FixedBitmap
::
FixedBitmap
(
Window
*
pParent
,
const
ResId
&
rResId
)
:
Control
(
WINDOW_FIXEDBITMAP
)
{
rResId
.
SetRT
(
RSC_FIXEDBITMAP
);
WinBits
nStyle
=
ImplInitRes
(
rResId
);
ImplInit
(
pParent
,
nStyle
);
ImplLoadRes
(
rResId
);
if
(
!
(
nStyle
&
WB_HIDE
)
)
Show
();
}
FixedBitmap
::~
FixedBitmap
()
{
}
...
...
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