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
3312d346
Kaydet (Commit)
3312d346
authored
May 07, 2012
tarafından
Takeshi Abe
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
removed unused defines
Change-Id: Ieaba4fe704cc588bd515b427a7f14008afea8c03
üst
56934b87
Hide whitespace changes
Inline
Side-by-side
Showing
11 changed files
with
0 additions
and
44 deletions
+0
-44
iahndl-ssl.cxx
uui/source/iahndl-ssl.cxx
+0
-1
settings.cxx
vcl/source/app/settings.cxx
+0
-7
menubtn.cxx
vcl/source/control/menubtn.cxx
+0
-7
bitmap2.cxx
vcl/source/gdi/bitmap2.cxx
+0
-2
graph.cxx
vcl/source/gdi/graph.cxx
+0
-11
image.cxx
vcl/source/gdi/image.cxx
+0
-2
impimage.cxx
vcl/source/gdi/impimage.cxx
+0
-1
metaact.cxx
vcl/source/gdi/metaact.cxx
+0
-1
outdev2.cxx
vcl/source/gdi/outdev2.cxx
+0
-4
salmisc.cxx
vcl/source/gdi/salmisc.cxx
+0
-3
wrkwin.cxx
vcl/source/window/wrkwin.cxx
+0
-5
No files found.
uui/source/iahndl-ssl.cxx
Dosyayı görüntüle @
3312d346
...
@@ -52,7 +52,6 @@
...
@@ -52,7 +52,6 @@
#include <boost/scoped_ptr.hpp>
#include <boost/scoped_ptr.hpp>
#define DESCRIPTION_1 1
#define DESCRIPTION_1 1
#define DESCRIPTION_2 2
#define TITLE 3
#define TITLE 3
#define OID_SUBJECT_ALTERNATIVE_NAME "2.5.29.17"
#define OID_SUBJECT_ALTERNATIVE_NAME "2.5.29.17"
...
...
vcl/source/app/settings.cxx
Dosyayı görüntüle @
3312d346
...
@@ -56,13 +56,6 @@ DBG_NAME( AllSettings )
...
@@ -56,13 +56,6 @@ DBG_NAME( AllSettings )
// =======================================================================
// =======================================================================
#define STDSYS_STYLE (STYLE_OPTION_SCROLLARROW | \
STYLE_OPTION_SPINARROW | \
STYLE_OPTION_SPINUPDOWN | \
STYLE_OPTION_NOMNEMONICS)
// =======================================================================
ImplMouseData
::
ImplMouseData
()
ImplMouseData
::
ImplMouseData
()
{
{
mnRefCount
=
1
;
mnRefCount
=
1
;
...
...
vcl/source/control/menubtn.cxx
Dosyayı görüntüle @
3312d346
...
@@ -35,13 +35,6 @@
...
@@ -35,13 +35,6 @@
#include <vcl/menubtn.hxx>
#include <vcl/menubtn.hxx>
#include <vcl/svapp.hxx>
#include <vcl/svapp.hxx>
// =======================================================================
#define IMAGEBUTTON_BORDER_OFF1 11
#define IMAGEBUTTON_BORDER_OFF2 16
// =======================================================================
// =======================================================================
void
MenuButton
::
ImplInitMenuButtonData
()
void
MenuButton
::
ImplInitMenuButtonData
()
...
...
vcl/source/gdi/bitmap2.cxx
Dosyayı görüntüle @
3312d346
...
@@ -49,8 +49,6 @@
...
@@ -49,8 +49,6 @@
#define DIBINFOHEADERSIZE ( sizeof( DIBInfoHeader ) )
#define DIBINFOHEADERSIZE ( sizeof( DIBInfoHeader ) )
#define BITMAPINFOHEADER 0x28
#define BITMAPINFOHEADER 0x28
#define SETPIXEL4( pBuf, nX, cChar )( (pBuf)[ (nX) >> 1 ] |= ( (nX) & 1 ) ? ( cChar ): (cChar) << 4 );
// ----------------------
// ----------------------
// - Compression defines
// - Compression defines
// ----------------------
// ----------------------
...
...
vcl/source/gdi/graph.cxx
Dosyayı görüntüle @
3312d346
...
@@ -43,17 +43,6 @@
...
@@ -43,17 +43,6 @@
#include <cppuhelper/typeprovider.hxx>
#include <cppuhelper/typeprovider.hxx>
#include <rtl/instance.hxx>
#include <rtl/instance.hxx>
// -----------------------
// - Compression defines -
// -----------------------
#define COMPRESS_OWN ('S'|('D'<<8UL))
#define COMPRESS_NONE ( 0UL )
#define RLE_8 ( 1UL )
#define RLE_4 ( 2UL )
#define BITFIELDS ( 3UL )
#define ZCOMPRESS ( COMPRESS_OWN | 0x01000000UL )
/* == 'SD01' (binary) */
using
namespace
::
com
::
sun
::
star
;
using
namespace
::
com
::
sun
::
star
;
// -----------------------
// -----------------------
...
...
vcl/source/gdi/image.cxx
Dosyayı görüntüle @
3312d346
...
@@ -52,8 +52,6 @@
...
@@ -52,8 +52,6 @@
DBG_NAME
(
Image
)
DBG_NAME
(
Image
)
DBG_NAME
(
ImageList
)
DBG_NAME
(
ImageList
)
#define IMAGE_FILE_VERSION 100
using
namespace
::
com
::
sun
::
star
;
using
namespace
::
com
::
sun
::
star
;
// ---------
// ---------
...
...
vcl/source/gdi/impimage.cxx
Dosyayı görüntüle @
3312d346
...
@@ -43,7 +43,6 @@
...
@@ -43,7 +43,6 @@
#define IMPSYSIMAGEITEM_MASK ( 0x01 )
#define IMPSYSIMAGEITEM_MASK ( 0x01 )
#define IMPSYSIMAGEITEM_ALPHA ( 0x02 )
#define IMPSYSIMAGEITEM_ALPHA ( 0x02 )
#define DISA_ALL ( 0xffff )
// -----------------------------------------------------------------------
// -----------------------------------------------------------------------
...
...
vcl/source/gdi/metaact.cxx
Dosyayı görüntüle @
3312d346
...
@@ -85,7 +85,6 @@ inline void ImplScaleLineInfo( LineInfo& rLineInfo, double fScaleX, double fScal
...
@@ -85,7 +85,6 @@ inline void ImplScaleLineInfo( LineInfo& rLineInfo, double fScaleX, double fScal
// ========================================================================
// ========================================================================
#define COMPAT( _def_rIStm ) VersionCompat aCompat( ( _def_rIStm ), STREAM_READ );
#define COMPAT( _def_rIStm ) VersionCompat aCompat( ( _def_rIStm ), STREAM_READ );
#define COMPAT_VERSION() aCompat.GetVersion()
#define WRITE_BASE_COMPAT( _def_rOStm, _def_nVer, _pWriteData ) \
#define WRITE_BASE_COMPAT( _def_rOStm, _def_nVer, _pWriteData ) \
MetaAction::Write( ( _def_rOStm ), _pWriteData ); \
MetaAction::Write( ( _def_rOStm ), _pWriteData ); \
VersionCompat aCompat( ( _def_rOStm ), STREAM_WRITE, ( _def_nVer ) );
VersionCompat aCompat( ( _def_rOStm ), STREAM_WRITE, ( _def_nVer ) );
...
...
vcl/source/gdi/outdev2.cxx
Dosyayı görüntüle @
3312d346
...
@@ -50,10 +50,6 @@
...
@@ -50,10 +50,6 @@
#include <region.h>
#include <region.h>
#include <outdata.hxx>
#include <outdata.hxx>
#define BAND_MAX_SIZE 512000
// =======================================================================
DBG_NAMEEX
(
OutputDevice
)
DBG_NAMEEX
(
OutputDevice
)
// =======================================================================
// =======================================================================
...
...
vcl/source/gdi/salmisc.cxx
Dosyayı görüntüle @
3312d346
...
@@ -82,9 +82,6 @@ static long ImplIndexFromColor( const BitmapColor& rCol )
...
@@ -82,9 +82,6 @@ static long ImplIndexFromColor( const BitmapColor& rCol )
#endif
#endif
}
}
#define COLOR_TO_INDEX( _def_rCol )
// ------------------------
// ------------------------
// - conversion functions -
// - conversion functions -
// ------------------------
// ------------------------
...
...
vcl/source/window/wrkwin.cxx
Dosyayı görüntüle @
3312d346
...
@@ -45,11 +45,6 @@
...
@@ -45,11 +45,6 @@
// =======================================================================
// =======================================================================
#define WORKWIN_WINDOWSTATE_FULLSCREEN ((sal_uLong)0x00010000)
#define WORKWIN_WINDOWSTATE_ALL ((sal_uLong)0x00FF0000)
// =======================================================================
void
WorkWindow
::
ImplInitWorkWindowData
()
void
WorkWindow
::
ImplInitWorkWindowData
()
{
{
mnIcon
=
0
;
// Should be removed in the next top level update - now in SystemWindow
mnIcon
=
0
;
// Should be removed in the next top level update - now in SystemWindow
...
...
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