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
038683bf
Kaydet (Commit)
038683bf
authored
Kas 26, 2014
tarafından
Stephan Bergmann
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Silence Mac OS X 10.9/10.10 deprecations for now
Change-Id: Ie63ed8f6f66a7641ad872f93d76efb962333cec9
üst
210ef021
Hide whitespace changes
Inline
Side-by-side
Showing
11 changed files
with
43 additions
and
0 deletions
+43
-0
framegrabber.mm
avmedia/source/quicktime/framegrabber.mm
+4
-0
player.mm
avmedia/source/quicktime/player.mm
+4
-0
window.mm
avmedia/source/quicktime/window.mm
+4
-0
CFStringUtilities.mm
fpicker/source/aqua/CFStringUtilities.mm
+2
-0
ControlHelper.mm
fpicker/source/aqua/ControlHelper.mm
+6
-0
BluetoothServer.cxx
sd/source/ui/remotecontrol/BluetoothServer.cxx
+2
-0
OGLTrans_TransitionerImpl.cxx
...rce/engine/OGLTrans/generic/OGLTrans_TransitionerImpl.cxx
+4
-0
DragSource.cxx
vcl/osx/DragSource.cxx
+3
-0
a11ywrapper.mm
vcl/osx/a11ywrapper.mm
+9
-0
salprn.cxx
vcl/osx/salprn.cxx
+3
-0
salsys.cxx
vcl/osx/salsys.cxx
+2
-0
No files found.
avmedia/source/quicktime/framegrabber.mm
Dosyayı görüntüle @
038683bf
...
...
@@ -30,6 +30,8 @@
using namespace ::com::sun::star;
SAL_WNODEPRECATED_DECLARATIONS_PUSH //TODO: 10.9
namespace avmedia { namespace quicktime {
...
...
@@ -135,4 +137,6 @@ uno::Sequence< ::rtl::OUString > SAL_CALL FrameGrabber::getSupportedServiceNames
} // namespace quicktime
} // namespace avmedia
SAL_WNODEPRECATED_DECLARATIONS_POP
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
avmedia/source/quicktime/player.mm
Dosyayı görüntüle @
038683bf
...
...
@@ -25,6 +25,8 @@
using namespace ::com::sun::star;
SAL_WNODEPRECATED_DECLARATIONS_PUSH //TODO: 10.9
namespace avmedia { namespace quicktime {
...
...
@@ -389,4 +391,6 @@ uno::Sequence< ::rtl::OUString > SAL_CALL Player::getSupportedServiceNames( )
} // namespace quicktime
} // namespace avmedia
SAL_WNODEPRECATED_DECLARATIONS_POP
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
avmedia/source/quicktime/window.mm
Dosyayı görüntüle @
038683bf
...
...
@@ -25,6 +25,8 @@
using namespace ::com::sun::star;
SAL_WNODEPRECATED_DECLARATIONS_PUSH //TODO: 10.9
namespace avmedia { namespace quicktime {
static ::osl::Mutex& ImplGetOwnStaticMutex()
...
...
@@ -280,4 +282,6 @@ uno::Sequence< ::rtl::OUString > SAL_CALL Window::getSupportedServiceNames( )
} // namespace quicktime
} // namespace avmedia
SAL_WNODEPRECATED_DECLARATIONS_POP
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
fpicker/source/aqua/CFStringUtilities.mm
Dosyayı görüntüle @
038683bf
...
...
@@ -58,7 +58,9 @@ rtl::OUString FSRefToOUString(FSRef fsRef, InfoType info)
{
//DBG_PRINT_ENTRY("CFStringUtilities", __func__);
SAL_WNODEPRECATED_DECLARATIONS_PUSH //TODO: 10.9 CFURLCreateFromFSRef
CFURLRef aUrlRef = CFURLCreateFromFSRef(NULL, &fsRef);
SAL_WNODEPRECATED_DECLARATIONS_POP
rtl::OUString sResult = CFURLRefToOUString(aUrlRef, info);
...
...
fpicker/source/aqua/ControlHelper.mm
Dosyayı görüntüle @
038683bf
...
...
@@ -204,7 +204,9 @@ OUString ControlHelper::getLabel( sal_Int16 nControlId )
retVal = [temp OUString];
}
else {
SAL_WNODEPRECATED_DECLARATIONS_PUSH //TODO: 10.9 title
NSString* sLabel = [[pControl cell] title];
SAL_WNODEPRECATED_DECLARATIONS_POP
retVal = [sLabel OUString];
}
...
...
@@ -232,7 +234,9 @@ void ControlHelper::setLabel( sal_Int16 nControlId, NSString* aLabel )
m_aMapListLabels[pControl] = [aLabel retain];
} else if ([pControl class] == [NSButton class]) {
SAL_WNODEPRECATED_DECLARATIONS_PUSH //TODO: 10.9 setTitle
[[pControl cell] setTitle:aLabel];
SAL_WNODEPRECATED_DECLARATIONS_POP
}
} else {
SAL_INFO("fpicker.aqua","Control not found to set label for");
...
...
@@ -952,7 +956,9 @@ NSTextField* ControlHelper::createLabelWithString(NSString* labelString) {
[textField setSelectable:NO];
[textField setDrawsBackground:NO];
[textField setBordered:NO];
SAL_WNODEPRECATED_DECLARATIONS_PUSH //TODO: 10.9 setTitle
[[textField cell] setTitle:labelString];
SAL_WNODEPRECATED_DECLARATIONS_POP
DBG_PRINT_EXIT(CLASS_NAME, __func__);
return textField;
...
...
sd/source/ui/remotecontrol/BluetoothServer.cxx
Dosyayı görüntüle @
038683bf
...
...
@@ -1491,7 +1491,9 @@ void SAL_CALL BluetoothServer::run()
// Create service
IOBluetoothSDPServiceRecordRef
serviceRecordRef
;
SAL_WNODEPRECATED_DECLARATIONS_PUSH
//TODO: 10.9 IOBluetoothAddServiceDict
IOReturn
rc
=
IOBluetoothAddServiceDict
((
CFDictionaryRef
)
dict
,
&
serviceRecordRef
);
SAL_WNODEPRECATED_DECLARATIONS_POP
SAL_INFO
(
"sdremote.bluetooth"
,
"IOBluetoothAddServiceDict returned "
<<
rc
);
...
...
slideshow/source/engine/OGLTrans/generic/OGLTrans_TransitionerImpl.cxx
Dosyayı görüntüle @
038683bf
...
...
@@ -970,6 +970,7 @@ void OGLTransitionerImpl::impl_createTexture(
maSlideBitmapLayout
.
ColorSpace
->
convertToIntegerColorSpace
(
data
,
getOGLColorSpace
()));
SAL_WNODEPRECATED_DECLARATIONS_PUSH
//TODO: 10.9 gluBuild2DMipmaps
gluBuild2DMipmaps
(
GL_TEXTURE_2D
,
4
,
maSlideSize
.
Width
,
...
...
@@ -977,6 +978,7 @@ void OGLTransitionerImpl::impl_createTexture(
GL_RGBA
,
GL_UNSIGNED_BYTE
,
&
tempBytes
[
0
]);
SAL_WNODEPRECATED_DECLARATIONS_POP
glTexParameteri
(
GL_TEXTURE_2D
,
GL_TEXTURE_MAG_FILTER
,
GL_LINEAR
);
glTexParameteri
(
GL_TEXTURE_2D
,
GL_TEXTURE_MIN_FILTER
,
GL_LINEAR_MIPMAP_LINEAR
);
//TRILINEAR FILTERING
...
...
@@ -990,7 +992,9 @@ void OGLTransitionerImpl::impl_createTexture(
glTexParameteri
(
GL_TEXTURE_2D
,
GL_TEXTURE_MAG_FILTER
,
GL_NEAREST
);
glTexParameteri
(
GL_TEXTURE_2D
,
GL_TEXTURE_MIN_FILTER
,
GL_NEAREST
);
}
else
{
SAL_WNODEPRECATED_DECLARATIONS_PUSH
//TODO: 10.9 gluBuild2DMipmaps
gluBuild2DMipmaps
(
GL_TEXTURE_2D
,
pFormat
->
nInternalFormat
,
maSlideSize
.
Width
,
maSlideSize
.
Height
,
pFormat
->
eFormat
,
pFormat
->
eType
,
&
data
[
0
]
);
SAL_WNODEPRECATED_DECLARATIONS_POP
glTexParameteri
(
GL_TEXTURE_2D
,
GL_TEXTURE_MAG_FILTER
,
GL_LINEAR
);
glTexParameteri
(
GL_TEXTURE_2D
,
GL_TEXTURE_MIN_FILTER
,
GL_LINEAR_MIPMAP_LINEAR
);
//TRILINEAR FILTERING
...
...
vcl/osx/DragSource.cxx
Dosyayı görüntüle @
038683bf
...
...
@@ -266,6 +266,8 @@ void SAL_CALL DragSource::startDrag(const DragGestureEvent& trigger,
g_DropSuccessSet
=
false
;
g_DropSuccess
=
false
;
SAL_WNODEPRECATED_DECLARATIONS_PUSH
//TODO: 10.7 dragImage:at:offset:event:pasteboard:source:slideBack:
[
mView
dragImage
:
dragImage
at
:
p
offset
:
NSMakeSize
(
0
,
0
)
...
...
@@ -273,6 +275,7 @@ void SAL_CALL DragSource::startDrag(const DragGestureEvent& trigger,
pasteboard
:
clipb
->
getPasteboard
()
source
:
mDragSourceHelper
slideBack
:
1
];
SAL_WNODEPRECATED_DECLARATIONS_POP
[
dragImage
release
];
...
...
vcl/osx/a11ywrapper.mm
Dosyayı görüntüle @
038683bf
...
...
@@ -241,7 +241,10 @@ static std::ostream &operator<<(std::ostream &s, NSPoint point) {
return subRole;
} else {
[ subRole release ];
SAL_WNODEPRECATED_DECLARATIONS_PUSH
//TODO: 10.10 accessibilityAttributeValue:
return [ super accessibilityAttributeValue: NSAccessibilitySubroleAttribute ];
SAL_WNODEPRECATED_DECLARATIONS_POP
}
}
}
...
...
@@ -917,7 +920,10 @@ static std::ostream &operator<<(std::ostream &s, NSPoint point) {
if ( [ parent isKindOfClass: [ AquaA11yWrapper class ] ] ) {
parentAsWrapper = (AquaA11yWrapper *) parent;
}
SAL_WNODEPRECATED_DECLARATIONS_PUSH
//TODO: 10.10 accessibilityAttributeValue:
NSString * parentRole = (NSString *) [ parent accessibilityAttributeValue: NSAccessibilityRoleAttribute ];
SAL_WNODEPRECATED_DECLARATIONS_POP
// if we are a textarea inside a combobox, then the combobox is the action responder
if ( enabled
&& [ role isEqualToString: NSAccessibilityTextAreaRole ]
...
...
@@ -959,8 +965,11 @@ static std::ostream &operator<<(std::ostream &s, NSPoint point) {
-(BOOL)isViewElement:(NSObject *)viewElement hitByPoint:(NSPoint)point {
BOOL hit = NO;
NSAutoreleasePool * pool = [ [ NSAutoreleasePool alloc ] init ];
SAL_WNODEPRECATED_DECLARATIONS_PUSH
//TODO: 10.10 accessibilityAttributeValue:
NSValue * position = [ viewElement accessibilityAttributeValue: NSAccessibilityPositionAttribute ];
NSValue * size = [ viewElement accessibilityAttributeValue: NSAccessibilitySizeAttribute ];
SAL_WNODEPRECATED_DECLARATIONS_POP
if ( position != nil && size != nil ) {
float minX = [ position pointValue ].x;
float minY = [ position pointValue ].y;
...
...
vcl/osx/salprn.cxx
Dosyayı görüntüle @
038683bf
...
...
@@ -630,6 +630,8 @@ void AquaSalInfoPrinter::InitPaperFormats( const ImplJobSetup* )
if
(
mpPrinter
)
{
SAL_WNODEPRECATED_DECLARATIONS_PUSH
//TODO: 10.9 statusForTable:, stringListForKey:inTable:
if
(
[
mpPrinter
statusForTable
:
@
"PPD"
]
==
NSPrinterTableOK
)
{
NSArray
*
pPaperNames
=
[
mpPrinter
stringListForKey
:
@
"PageSize"
inTable
:
@
"PPD"
];
...
...
@@ -661,6 +663,7 @@ void AquaSalInfoPrinter::InitPaperFormats( const ImplJobSetup* )
}
}
}
SAL_WNODEPRECATED_DECLARATIONS_POP
}
}
...
...
vcl/osx/salsys.cxx
Dosyayı görüntüle @
038683bf
...
...
@@ -150,7 +150,9 @@ int AquaSalSystem::ShowNativeMessageBox( const OUString& rTitle,
}
}
SAL_WNODEPRECATED_DECLARATIONS_PUSH
//TODO: 10.10 NSRunAlertPanel
int
nResult
=
NSRunAlertPanel
(
pTitle
,
@
"%@"
,
pDefText
,
pAltText
,
pOthText
,
pMessage
);
SAL_WNODEPRECATED_DECLARATIONS_POP
if
(
pTitle
)
[
pTitle
release
];
...
...
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