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
d24df3fc
Kaydet (Commit)
d24df3fc
authored
Agu 12, 2014
tarafından
Caolán McNamara
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
callcatcher: another round of ResId removals
Change-Id: Ia3acdb3501b7735820258cb090e731f5814bc07f
üst
4347d844
Hide whitespace changes
Inline
Side-by-side
Showing
16 changed files
with
2 additions
and
141 deletions
+2
-141
curledit.cxx
dbaccess/source/ui/control/curledit.cxx
+0
-8
dbtreelistbox.cxx
dbaccess/source/ui/control/dbtreelistbox.cxx
+0
-10
adminpages.cxx
dbaccess/source/ui/dlg/adminpages.cxx
+0
-7
adminpages.hxx
dbaccess/source/ui/dlg/adminpages.hxx
+0
-3
curledit.hxx
dbaccess/source/ui/inc/curledit.hxx
+0
-1
dbtreelistbox.hxx
dbaccess/source/ui/inc/dbtreelistbox.hxx
+0
-3
basedlgs.hxx
include/sfx2/basedlgs.hxx
+0
-1
wizardmachine.hxx
include/svtools/wizardmachine.hxx
+0
-3
scrbar.hxx
include/vcl/scrbar.hxx
+0
-1
vclmedit.hxx
include/vcl/vclmedit.hxx
+2
-4
basedlgs.cxx
sfx2/source/dialog/basedlgs.cxx
+0
-22
wizardmachine.cxx
svtools/source/dialogs/wizardmachine.cxx
+0
-18
scrbar.cxx
vcl/source/control/scrbar.cxx
+0
-18
vclmedit.cxx
vcl/source/edit/vclmedit.cxx
+0
-30
resourcemanager.cxx
xmlsecurity/source/dialogs/resourcemanager.cxx
+0
-10
resourcemanager.hxx
xmlsecurity/source/dialogs/resourcemanager.hxx
+0
-2
No files found.
dbaccess/source/ui/control/curledit.cxx
Dosyayı görüntüle @
d24df3fc
...
...
@@ -24,14 +24,6 @@
namespace
dbaui
{
// OConnectionURLEdit
OConnectionURLEdit
::
OConnectionURLEdit
(
Window
*
_pParent
,
const
ResId
&
_rResId
,
bool
_bShowPrefix
)
:
Edit
(
_pParent
,
_rResId
)
,
m_pTypeCollection
(
NULL
)
,
m_pForcedPrefix
(
NULL
)
,
m_bShowPrefix
(
_bShowPrefix
)
{
}
OConnectionURLEdit
::
OConnectionURLEdit
(
Window
*
_pParent
,
WinBits
_nBits
,
bool
_bShowPrefix
)
:
Edit
(
_pParent
,
_nBits
)
...
...
dbaccess/source/ui/control/dbtreelistbox.cxx
Dosyayı görüntüle @
d24df3fc
...
...
@@ -64,16 +64,6 @@ DBTreeListBox::DBTreeListBox( Window* pParent, WinBits nWinStyle ,bool _bHandleE
init
();
}
DBTreeListBox
::
DBTreeListBox
(
Window
*
pParent
,
const
ResId
&
rResId
,
bool
_bHandleEnterKey
)
:
SvTreeListBox
(
pParent
,
rResId
)
,
m_pDragedEntry
(
NULL
)
,
m_pActionListener
(
NULL
)
,
m_pContextMenuProvider
(
NULL
)
,
m_bHandleEnterKey
(
_bHandleEnterKey
)
{
init
();
}
void
DBTreeListBox
::
init
()
{
sal_uInt16
nSize
=
SPACEBETWEENENTRIES
;
...
...
dbaccess/source/ui/dlg/adminpages.cxx
Dosyayı görüntüle @
d24df3fc
...
...
@@ -221,13 +221,6 @@ namespace dbaui
}
}
void
OGenericAdministrationPage
::
SetControlFontWeight
(
Window
*
_pWindow
,
FontWeight
_eWeight
)
{
Font
aFont
=
_pWindow
->
GetControlFont
();
aFont
.
SetWeight
(
_eWeight
);
_pWindow
->
SetControlFont
(
aFont
);
}
IMPL_LINK
(
OGenericAdministrationPage
,
OnTestConnectionClickHdl
,
PushButton
*
,
/*_pButton*/
)
{
OSL_ENSURE
(
m_pAdminDialog
,
"No Admin dialog set! ->GPF"
);
...
...
dbaccess/source/ui/dlg/adminpages.hxx
Dosyayı görüntüle @
d24df3fc
...
...
@@ -228,9 +228,6 @@ namespace dbaui
static
void
fillString
(
SfxItemSet
&
_rSet
,
Edit
*
_pEdit
,
sal_uInt16
_nID
,
bool
&
_bChangedSomething
);
protected
:
// used to set the right Pane header of a wizard to bold
void
SetControlFontWeight
(
Window
*
_pWindow
,
FontWeight
_eWeight
=
WEIGHT_BOLD
);
/** This link be used for controls where the tabpage does not need to take any special action when the control
is modified. The implementation just calls callModifiedHdl.
*/
...
...
dbaccess/source/ui/inc/curledit.hxx
Dosyayı görüntüle @
d24df3fc
...
...
@@ -41,7 +41,6 @@ class OConnectionURLEdit : public Edit
bool
m_bShowPrefix
;
// when <TRUE> the prefix will be visible, otherwise not
public
:
OConnectionURLEdit
(
Window
*
pParent
,
const
ResId
&
rResId
,
bool
_bShowPrefix
=
false
);
OConnectionURLEdit
(
Window
*
pParent
,
WinBits
_nBits
,
bool
_bShowPrefix
=
false
);
virtual
~
OConnectionURLEdit
();
...
...
dbaccess/source/ui/inc/dbtreelistbox.hxx
Dosyayı görüntüle @
d24df3fc
...
...
@@ -83,9 +83,6 @@ namespace dbaui
DBTreeListBox
(
Window
*
pParent
,
WinBits
nWinStyle
=
0
,
bool
_bHandleEnterKey
=
false
);
DBTreeListBox
(
Window
*
pParent
,
const
ResId
&
rResId
,
bool
_bHandleEnterKey
=
false
);
virtual
~
DBTreeListBox
();
void
setControlActionListener
(
IControlActionListener
*
_pListener
)
{
m_pActionListener
=
_pListener
;
}
...
...
include/sfx2/basedlgs.hxx
Dosyayı görüntüle @
d24df3fc
...
...
@@ -68,7 +68,6 @@ private:
SAL_DLLPRIVATE
void
init
();
protected
:
SfxModalDialog
(
Window
*
pParent
,
const
ResId
&
);
SfxModalDialog
(
Window
*
pParent
,
const
OString
&
rID
,
const
OUString
&
rUIXMLDescription
);
OUString
&
GetExtraData
()
{
return
aExtraData
;
}
...
...
include/svtools/wizardmachine.hxx
Dosyayı görüntüle @
d24df3fc
...
...
@@ -171,11 +171,8 @@ namespace svt
public
:
/** ctor
The ctor does not call FreeResource, this is the resposibility of the derived class.
For the button flags, use any combination of the WZB_* flags.
*/
OWizardMachine
(
Window
*
_pParent
,
const
ResId
&
_rRes
,
sal_uInt32
_nButtonFlags
);
OWizardMachine
(
Window
*
_pParent
,
const
WinBits
i_nStyle
,
sal_uInt32
_nButtonFlags
);
OWizardMachine
(
Window
*
_pParent
,
sal_uInt32
_nButtonFlags
);
virtual
~
OWizardMachine
();
...
...
include/vcl/scrbar.hxx
Dosyayı görüntüle @
d24df3fc
...
...
@@ -72,7 +72,6 @@ private:
using
Window
::
ImplInit
;
SAL_DLLPRIVATE
void
ImplInit
(
Window
*
pParent
,
WinBits
nStyle
);
SAL_DLLPRIVATE
void
ImplInitStyle
(
WinBits
nStyle
);
SAL_DLLPRIVATE
void
ImplLoadRes
(
const
ResId
&
rResId
);
SAL_DLLPRIVATE
void
ImplUpdateRects
(
bool
bUpdate
=
true
);
SAL_DLLPRIVATE
long
ImplCalcThumbPos
(
long
nPixPos
);
SAL_DLLPRIVATE
long
ImplCalcThumbPosPix
(
long
nPos
);
...
...
include/vcl/vclmedit.hxx
Dosyayı görüntüle @
d24df3fc
...
...
@@ -58,10 +58,8 @@ protected:
ScrollBar
*
GetVScrollBar
()
const
;
public
:
VclMultiLineEdit
(
Window
*
pParent
,
WinBits
nWinStyle
=
WB_LEFT
|
WB_BORDER
);
VclMultiLineEdit
(
Window
*
pParent
,
const
ResId
&
rResId
);
virtual
~
VclMultiLineEdit
();
VclMultiLineEdit
(
Window
*
pParent
,
WinBits
nWinStyle
=
WB_LEFT
|
WB_BORDER
);
virtual
~
VclMultiLineEdit
();
void
SelectionChanged
();
void
CaretChanged
();
...
...
sfx2/source/dialog/basedlgs.cxx
Dosyayı görüntüle @
d24df3fc
...
...
@@ -146,31 +146,11 @@ void SfxModalDialog::GetDialogData_Impl()
}
}
void
SfxModalDialog
::
init
()
{
GetDialogData_Impl
();
}
SfxModalDialog
::
SfxModalDialog
(
Window
*
pParent
,
const
ResId
&
rResId
)
/* [Description]
Constructor of the general base class for modal Dialoge;
ResId is used as ID in ini-file. The saved position from there is set.
*/
:
ModalDialog
(
pParent
,
rResId
),
nUniqId
(
rResId
.
GetId
()),
pInputSet
(
0
),
pOutputSet
(
0
)
{
init
();
}
SfxModalDialog
::
SfxModalDialog
(
Window
*
pParent
,
const
OString
&
rID
,
const
OUString
&
rUIXMLDescription
)
:
ModalDialog
(
pParent
,
rID
,
rUIXMLDescription
),
nUniqId
(
0
),
//todo: remove this member when the ResId using ctor is removed
...
...
@@ -180,8 +160,6 @@ SfxModalDialog::SfxModalDialog(Window *pParent, const OString& rID, const OUStri
init
();
}
SfxModalDialog
::~
SfxModalDialog
()
/* [Description]
...
...
svtools/source/dialogs/wizardmachine.cxx
Dosyayı görüntüle @
d24df3fc
...
...
@@ -118,23 +118,6 @@ namespace svt
}
};
//= OWizardMachine
OWizardMachine
::
OWizardMachine
(
Window
*
_pParent
,
const
ResId
&
_rRes
,
sal_uInt32
_nButtonFlags
)
:
WizardDialog
(
_pParent
,
_rRes
)
,
m_pFinish
(
NULL
)
,
m_pCancel
(
NULL
)
,
m_pNextPage
(
NULL
)
,
m_pPrevPage
(
NULL
)
,
m_pHelp
(
NULL
)
,
m_pImpl
(
new
WizardMachineImplData
)
{
implConstruct
(
_nButtonFlags
);
}
OWizardMachine
::
OWizardMachine
(
Window
*
_pParent
,
const
WinBits
i_nStyle
,
sal_uInt32
_nButtonFlags
)
:
WizardDialog
(
_pParent
,
i_nStyle
)
,
m_pFinish
(
NULL
)
...
...
@@ -147,7 +130,6 @@ namespace svt
implConstruct
(
_nButtonFlags
);
}
OWizardMachine
::
OWizardMachine
(
Window
*
_pParent
,
sal_uInt32
_nButtonFlags
)
:
WizardDialog
(
_pParent
,
"WizardDialog"
,
"svt/ui/wizarddialog.ui"
)
,
m_pFinish
(
NULL
)
...
...
vcl/source/control/scrbar.cxx
Dosyayı görüntüle @
d24df3fc
...
...
@@ -128,24 +128,6 @@ ScrollBar::~ScrollBar()
delete
mpData
;
}
void
ScrollBar
::
ImplLoadRes
(
const
ResId
&
rResId
)
{
Control
::
ImplLoadRes
(
rResId
);
sal_Int16
nMin
=
ReadShortRes
();
sal_Int16
nMax
=
ReadShortRes
();
sal_Int16
nThumbPos
=
ReadShortRes
();
sal_Int16
nPage
=
ReadShortRes
();
sal_Int16
nStep
=
ReadShortRes
();
sal_Int16
nVisibleSize
=
ReadShortRes
();
SetRange
(
Range
(
nMin
,
nMax
)
);
SetLineSize
(
nStep
);
SetPageSize
(
nPage
);
SetVisibleSize
(
nVisibleSize
);
SetThumbPos
(
nThumbPos
);
}
void
ScrollBar
::
ImplUpdateRects
(
bool
bUpdate
)
{
sal_uInt16
nOldStateFlags
=
mnStateFlags
;
...
...
vcl/source/edit/vclmedit.cxx
Dosyayı görüntüle @
d24df3fc
...
...
@@ -938,36 +938,6 @@ VclMultiLineEdit::VclMultiLineEdit( Window* pParent, WinBits nWinStyle )
SetStyle
(
ImplInitStyle
(
nWinStyle
)
);
}
VclMultiLineEdit
::
VclMultiLineEdit
(
Window
*
pParent
,
const
ResId
&
rResId
)
:
Edit
(
pParent
,
rResId
.
SetRT
(
RSC_MULTILINEEDIT
)
)
{
SetType
(
WINDOW_MULTILINEEDIT
);
WinBits
nWinStyle
=
rResId
.
GetWinBits
();
pImpVclMEdit
=
new
ImpVclMEdit
(
this
,
nWinStyle
);
ImplInitSettings
(
true
,
true
,
true
);
pUpdateDataTimer
=
0
;
sal_Int32
nMaxLen
=
Edit
::
GetMaxTextLen
();
if
(
nMaxLen
)
SetMaxTextLen
(
nMaxLen
);
SetText
(
Edit
::
GetText
()
);
if
(
IsVisible
()
)
pImpVclMEdit
->
Resize
();
SetCompoundControl
(
true
);
SetStyle
(
ImplInitStyle
(
nWinStyle
)
);
// Base Edit ctor could call Show already, but that would cause problems
// with accessibility, as Show might (indirectly) trigger a call to virtual
// GetComponentInterface, which is the Edit's base version instead of the
// VclMultiLineEdit's version while in the base Edit ctor:
if
((
GetStyle
()
&
WB_HIDE
)
==
0
)
Show
();
}
VclMultiLineEdit
::~
VclMultiLineEdit
()
{
{
...
...
xmlsecurity/source/dialogs/resourcemanager.cxx
Dosyayı görüntüle @
d24df3fc
...
...
@@ -346,16 +346,6 @@ vector< pair< OUString, OUString> > parseDN(const OUString& rRawString)
return
aStr
.
makeStringAndClear
();
}
long
ShrinkToFitWidth
(
Control
&
_rCtrl
,
long
_nOffs
)
{
long
nWidth
=
_rCtrl
.
GetTextWidth
(
_rCtrl
.
GetText
()
);
Size
aSize
(
_rCtrl
.
GetSizePixel
()
);
nWidth
+=
_nOffs
;
aSize
.
Width
()
=
nWidth
;
_rCtrl
.
SetSizePixel
(
aSize
);
return
nWidth
;
}
}
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
xmlsecurity/source/dialogs/resourcemanager.hxx
Dosyayı görüntüle @
d24df3fc
...
...
@@ -48,8 +48,6 @@ namespace XmlSec
OUString
GetContentPart
(
const
OUString
&
_rRawString
);
OUString
GetHexString
(
const
::
com
::
sun
::
star
::
uno
::
Sequence
<
sal_Int8
>&
_rSeq
,
const
char
*
_pSep
=
":"
,
sal_uInt16
_nLineBreak
=
0xFFFF
);
long
ShrinkToFitWidth
(
Control
&
_rCtrl
,
long
_nOffs
=
0
);
// return = new width
}
#define XMLSEC_RES(id) ResId(id,*XmlSec::GetResMgr())
...
...
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