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
66900072
Kaydet (Commit)
66900072
authored
Kas 29, 2010
tarafından
J. Graeme Lingard
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Remove empty comments
üst
2b77d15f
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
0 additions
and
105 deletions
+0
-105
optlingu.cxx
cui/source/options/optlingu.cxx
+0
-16
registry.hxx
..._native/source/win32/customactions/reg4msdoc/registry.hxx
+0
-4
registryexception.cxx
...ource/win32/customactions/reg4msdoc/registryexception.cxx
+0
-26
registryw9x.cxx
...tive/source/win32/customactions/reg4msdoc/registryw9x.cxx
+0
-14
registrywnt.cxx
...tive/source/win32/customactions/reg4msdoc/registrywnt.cxx
+0
-14
windowsregistry.cxx
.../source/win32/customactions/reg4msdoc/windowsregistry.cxx
+0
-24
reg64.cxx
setup_native/source/win32/customactions/reg64/reg64.cxx
+0
-7
No files found.
cui/source/options/optlingu.cxx
Dosyayı görüntüle @
66900072
...
...
@@ -172,9 +172,6 @@ static void lcl_OpenURL( ::rtl::OUString sURL )
}
}
/*--------------------------------------------------
--------------------------------------------------*/
static
const
sal_uInt16
nNameLen
=
8
;
static
sal_uInt16
pRanges
[]
=
...
...
@@ -243,8 +240,6 @@ public:
};
/*--------------------------------------------------
--------------------------------------------------*/
//
// User for user-dictionaries (XDictionary interface)
//
...
...
@@ -334,10 +329,6 @@ void BrwStringDic_Impl::Paint( const Point& rPos, SvLBox& rDev, USHORT,
rDev
.
SetFont
(
aOldFont
);
}
/*--------------------------------------------------
--------------------------------------------------*/
class
OptionsBreakSet
:
public
ModalDialog
{
OKButton
aOKPB
;
...
...
@@ -2009,8 +2000,6 @@ void SvxLinguTabPage::HideGroups( sal_uInt16 nGrp )
}
}
}
/*--------------------------------------------------
--------------------------------------------------*/
SvxEditModulesDlg
::
SvxEditModulesDlg
(
Window
*
pParent
,
SvxLinguData_Impl
&
rData
)
:
ModalDialog
(
pParent
,
CUI_RES
(
RID_SVXDLG_EDIT_MODULES
)
),
...
...
@@ -2120,9 +2109,6 @@ SvLBoxEntry* SvxEditModulesDlg::CreateEntry( String& rTxt, USHORT nCol )
return
pEntry
;
}
/* ---------------------------------------------------------------------------
---------------------------------------------------------------------------*/
IMPL_LINK
(
SvxEditModulesDlg
,
SelectHdl_Impl
,
SvxCheckListBox
*
,
pBox
)
{
if
(
&
aModulesCLB
==
pBox
)
...
...
@@ -2493,9 +2479,7 @@ IMPL_LINK( SvxEditModulesDlg, UpDownHdl_Impl, PushButton *, pBtn )
}
return
0
;
}
/* ---------------------------------------------------------------------------
---------------------------------------------------------------------------*/
IMPL_LINK
(
SvxEditModulesDlg
,
ClickHdl_Impl
,
PushButton
*
,
pBtn
)
{
if
(
&
aClosePB
==
pBtn
)
...
...
setup_native/source/win32/customactions/reg4msdoc/registry.hxx
Dosyayı görüntüle @
66900072
...
...
@@ -57,10 +57,6 @@ typedef std::auto_ptr<RegistryKeyImpl> RegistryKey;
typedef
std
::
vector
<
std
::
wstring
>
StringList
;
typedef
std
::
auto_ptr
<
StringList
>
StringListPtr
;
//---------------------------------------
//
//---------------------------------------
class
RegistryKeyImpl
{
public
:
...
...
setup_native/source/win32/customactions/reg4msdoc/registryexception.cxx
Dosyayı görüntüle @
66900072
...
...
@@ -23,16 +23,12 @@ RegistryException::RegistryException(long ErrorCode) :
{
}
/**
*/
RegistryException
::~
RegistryException
()
throw
()
{
if
(
m_ErrorMsg
)
LocalFree
(
m_ErrorMsg
);
}
/**
*/
const
char
*
RegistryException
::
what
()
const
throw
()
{
FormatMessage
(
...
...
@@ -49,8 +45,6 @@ const char* RegistryException::what() const throw()
return
reinterpret_cast
<
char
*>
(
m_ErrorMsg
);
}
/**
*/
long
RegistryException
::
GetErrorCode
()
const
{
return
m_ErrorCode
;
...
...
@@ -66,46 +60,26 @@ RegistryIOException::RegistryIOException(long ErrorCode) :
{
};
//#######################################
//
//#######################################
RegistryNoWriteAccessException
::
RegistryNoWriteAccessException
(
long
ErrorCode
)
:
RegistryException
(
ErrorCode
)
{
};
//#######################################
//
//#######################################
RegistryAccessDeniedException
::
RegistryAccessDeniedException
(
long
ErrorCode
)
:
RegistryException
(
ErrorCode
)
{
};
//#######################################
//
//#######################################
RegistryValueNotFoundException
::
RegistryValueNotFoundException
(
long
ErrorCode
)
:
RegistryException
(
ErrorCode
)
{
};
//#######################################
//
//#######################################
RegistryKeyNotFoundException
::
RegistryKeyNotFoundException
(
long
ErrorCode
)
:
RegistryException
(
ErrorCode
)
{
};
//#######################################
//
//#######################################
RegistryInvalidOperationException
::
RegistryInvalidOperationException
(
long
ErrorCode
)
:
RegistryException
(
ErrorCode
)
{
...
...
setup_native/source/win32/customactions/reg4msdoc/registryw9x.cxx
Dosyayı görüntüle @
66900072
...
...
@@ -26,10 +26,6 @@
*
************************************************************************/
//---------------------------------------
//
//---------------------------------------
#include "registryw9x.hxx"
#include <windows.h>
...
...
@@ -44,10 +40,6 @@
#pragma warning(disable : 4786 4350)
#endif
//---------------------------------------
//
//---------------------------------------
const
size_t
MAX_TMP_BUFF_SIZE
=
1024
*
sizeof
(
wchar_t
);
...
...
@@ -138,9 +130,6 @@ size_t RegistryKeyImplWin9x::GetSubKeyCount() const
return
nSubKeys
;
}
//-----------------------------------------------------
/**
*/
StringListPtr
RegistryKeyImplWin9x
::
GetSubKeyNames
()
const
{
assert
(
IsOpen
());
...
...
@@ -176,9 +165,6 @@ StringListPtr RegistryKeyImplWin9x::GetSubKeyNames() const
return
(
StringListPtr
)
key_names
;
}
//-----------------------------------------------------
/**
*/
StringListPtr
RegistryKeyImplWin9x
::
GetSubValueNames
()
const
{
assert
(
IsOpen
());
...
...
setup_native/source/win32/customactions/reg4msdoc/registrywnt.cxx
Dosyayı görüntüle @
66900072
...
...
@@ -26,10 +26,6 @@
*
************************************************************************/
//---------------------------------------
//
//---------------------------------------
#ifdef _MSC_VER
#pragma warning(push, 1)
/* disable warnings within system headers */
#endif
...
...
@@ -49,10 +45,6 @@
#pragma warning(disable : 4786 4350)
#endif
//---------------------------------------
//
//---------------------------------------
const
size_t
MAX_TMP_BUFF_SIZE
=
1024
*
sizeof
(
wchar_t
);
...
...
@@ -143,9 +135,6 @@ size_t RegistryKeyImplWinNT::GetSubKeyCount() const
return
nSubKeys
;
}
//-----------------------------------------------------
/**
*/
StringListPtr
RegistryKeyImplWinNT
::
GetSubKeyNames
()
const
{
assert
(
IsOpen
());
...
...
@@ -185,9 +174,6 @@ StringListPtr RegistryKeyImplWinNT::GetSubKeyNames() const
#endif
}
//-----------------------------------------------------
/**
*/
StringListPtr
RegistryKeyImplWinNT
::
GetSubValueNames
()
const
{
assert
(
IsOpen
());
...
...
setup_native/source/win32/customactions/reg4msdoc/windowsregistry.cxx
Dosyayı görüntüle @
66900072
...
...
@@ -11,10 +11,6 @@
#pragma warning(disable : 4350)
#endif
//------------------------------
//
//------------------------------
WindowsRegistry
::
WindowsRegistry
()
{
OSVERSIONINFOA
osverinfo
;
...
...
@@ -25,46 +21,26 @@ WindowsRegistry::WindowsRegistry()
m_IsWinNT
=
(
osverinfo
.
dwPlatformId
==
VER_PLATFORM_WIN32_NT
);
}
//------------------------------
//
//------------------------------
RegistryKey
WindowsRegistry
::
GetClassesRootKey
(
bool
Writeable
)
const
{
return
GetRegistryKey
(
HKEY_CLASSES_ROOT
,
Writeable
);
}
//------------------------------
//
//------------------------------
RegistryKey
WindowsRegistry
::
GetCurrentUserKey
(
bool
Writeable
)
const
{
return
GetRegistryKey
(
HKEY_CURRENT_USER
,
Writeable
);
}
//------------------------------
//
//------------------------------
RegistryKey
WindowsRegistry
::
GetLocalMachineKey
(
bool
Writeable
)
const
{
return
GetRegistryKey
(
HKEY_LOCAL_MACHINE
,
Writeable
);
}
//------------------------------
//
//------------------------------
RegistryKey
WindowsRegistry
::
GetUserKey
(
bool
Writeable
)
const
{
return
GetRegistryKey
(
HKEY_USERS
,
Writeable
);
}
//------------------------------
//
//------------------------------
RegistryKey
WindowsRegistry
::
GetRegistryKey
(
HKEY
RootKey
,
bool
Writeable
)
const
{
RegistryKey
regkey
;
...
...
setup_native/source/win32/customactions/reg64/reg64.cxx
Dosyayı görüntüle @
66900072
...
...
@@ -254,13 +254,6 @@ bool DeleteRegistryKey(HKEY RootKey, const wchar_t* KeyName)
return
(
ERROR_SUCCESS
==
rc
);
}
//---------------------------------------
//
//---------------------------------------
bool
SetRegistryKey
(
HKEY
RootKey
,
const
wchar_t
*
KeyName
,
const
wchar_t
*
ValueName
,
const
wchar_t
*
Value
)
{
HKEY
hSubKey
;
...
...
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