Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
C
cpython
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ç
Batuhan Osman TASKAYA
cpython
Commits
506e6b06
Kaydet (Commit)
506e6b06
authored
Mar 30, 2009
tarafından
Ronald Oussoren
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
This patch fixes issue 1254695 (wrong argument type conversion in Carbon.Qt)
üst
68ffe3ec
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
16 additions
and
13 deletions
+16
-13
_Qtmodule.c
Mac/Modules/qt/_Qtmodule.c
+0
-0
qtsupport.py
Mac/Modules/qt/qtsupport.py
+16
-13
No files found.
Mac/Modules/qt/_Qtmodule.c
Dosyayı görüntüle @
506e6b06
This source diff could not be displayed because it is too large. You can
view the blob
instead.
Mac/Modules/qt/qtsupport.py
Dosyayı görüntüle @
506e6b06
...
@@ -135,19 +135,22 @@ DataHandlerComponent = OpaqueByValueType('DataHandlerComponent', 'CmpObj')
...
@@ -135,19 +135,22 @@ DataHandlerComponent = OpaqueByValueType('DataHandlerComponent', 'CmpObj')
CompressorComponent
=
OpaqueByValueType
(
'CompressorComponent'
,
'CmpObj'
)
CompressorComponent
=
OpaqueByValueType
(
'CompressorComponent'
,
'CmpObj'
)
DecompressorComponent
=
OpaqueByValueType
(
'DecompressorComponent'
,
'CmpObj'
)
DecompressorComponent
=
OpaqueByValueType
(
'DecompressorComponent'
,
'CmpObj'
)
CodecComponent
=
OpaqueByValueType
(
'CodecComponent'
,
'CmpObj'
)
CodecComponent
=
OpaqueByValueType
(
'CodecComponent'
,
'CmpObj'
)
GraphicsImportComponent
=
OpaqueByValueType
(
'GraphicsImportComponent'
,
'CmpObj'
)
GraphicsExportComponent
=
OpaqueByValueType
(
'GraphicsExportComponent'
,
'CmpObj'
)
# Despite their names, these are all ComponentInstance types
ImageTranscoderComponent
=
OpaqueByValueType
(
'ImageTranscoderComponent'
,
'CmpObj'
)
GraphicsImportComponent
=
OpaqueByValueType
(
'GraphicsImportComponent'
,
'CmpInstObj'
)
DataCodecComponent
=
OpaqueByValueType
(
'DataCodecComponent'
,
'CmpObj'
)
GraphicsExportComponent
=
OpaqueByValueType
(
'GraphicsExportComponent'
,
'CmpInstObj'
)
GraphicImageMovieImportComponent
=
OpaqueByValueType
(
'GraphicImageMovieImportComponent'
,
'CmpObj'
)
ImageTranscoderComponent
=
OpaqueByValueType
(
'ImageTranscoderComponent'
,
'CmpInstObj'
)
MovieExportComponent
=
OpaqueByValueType
(
'MovieExportComponent'
,
'CmpObj'
)
MovieImportComponent
=
OpaqueByValueType
(
'MovieImportComponent'
,
'CmpInstObj'
)
MovieImportComponent
=
OpaqueByValueType
(
'MovieImportComponent'
,
'CmpObj'
)
MovieExportComponent
=
OpaqueByValueType
(
'MovieExportComponent'
,
'CmpInstObj'
)
QTVideoOutputComponent
=
OpaqueByValueType
(
'QTVideoOutputComponent'
,
'CmpObj'
)
TextExportComponent
=
OpaqueByValueType
(
'TextExportComponent'
,
'CmpInstObj'
)
SeqGrabComponent
=
OpaqueByValueType
(
'SeqGrabComponent'
,
'CmpObj'
)
GraphicImageMovieImportComponent
=
OpaqueByValueType
(
'GraphicImageMovieImportComponent'
,
'CmpInstObj'
)
TextExportComponent
=
OpaqueByValueType
(
'TextExportComponent'
,
'CmpObj'
)
pnotComponent
=
OpaqueByValueType
(
'pnotComponent'
,
'CmpInstObj'
)
TweenerComponent
=
OpaqueByValueType
(
'TweenerComponent'
,
'CmpObj'
)
# DataCompressorComponent, DataDecompressorComponent would go here
pnotComponent
=
OpaqueByValueType
(
'pnotComponent'
,
'CmpObj'
)
DataCodecComponent
=
OpaqueByValueType
(
'DataCodecComponent'
,
'CmpInstObj'
)
VideoDigitizerComponent
=
OpaqueByValueType
(
'VideoDigitizerComponent'
,
'CmpObj'
)
TweenerComponent
=
OpaqueByValueType
(
'TweenerComponent'
,
'CmpInstObj'
)
QTVideoOutputComponent
=
OpaqueByValueType
(
'QTVideoOutputComponent'
,
'CmpInstObj'
)
SeqGrabComponent
=
OpaqueByValueType
(
'SeqGrabComponent'
,
'CmpInstObj'
)
VideoDigitizerComponent
=
OpaqueByValueType
(
'VideoDigitizerComponent'
,
'CmpInstObj'
)
ComponentInstance
=
OpaqueByValueType
(
'ComponentInstance'
,
'CmpInstObj'
)
ComponentInstance
=
OpaqueByValueType
(
'ComponentInstance'
,
'CmpInstObj'
)
MediaHandler
=
OpaqueByValueType
(
'MediaHandler'
,
'CmpInstObj'
)
MediaHandler
=
OpaqueByValueType
(
'MediaHandler'
,
'CmpInstObj'
)
...
...
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