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
5045400e
Kaydet (Commit)
5045400e
authored
Eyl 24, 2014
tarafından
Stephan Bergmann
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Replace use of o3tl::heap_ptr with std::unique_ptr
Change-Id: Idbcb1be271ccda1885728ec5a6a75cfaec15f6f5
üst
6990ec19
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
reader.cxx
binaryurp/source/reader.cxx
+3
-3
No files found.
binaryurp/source/reader.cxx
Dosyayı görüntüle @
5045400e
...
...
@@ -21,6 +21,7 @@
#include <cassert>
#include <exception>
#include <memory>
#include <vector>
#include "boost/scoped_ptr.hpp"
...
...
@@ -35,7 +36,6 @@
#include "com/sun/star/uno/XCurrentContext.hpp"
#include "com/sun/star/uno/XInterface.hpp"
#include "cppu/unotype.hxx"
#include "o3tl/heap_ptr.hxx"
#include "rtl/byteseq.h"
#include "rtl/ustring.hxx"
#include "sal/types.h"
...
...
@@ -328,7 +328,7 @@ void Reader::readMessage(Unmarshal & unmarshal) {
}
break
;
}
o3tl
::
heap
_ptr
<
IncomingRequest
>
req
(
std
::
unique
_ptr
<
IncomingRequest
>
req
(
new
IncomingRequest
(
bridge_
,
tid
,
oid
,
obj
,
type
,
functionId
,
synchronous
,
memberTd
,
setter
,
inArgs
,
ccMode
,
cc
));
...
...
@@ -441,7 +441,7 @@ void Reader::readReplyMessage(Unmarshal & unmarshal, sal_uInt8 flags1) {
switch
(
req
.
kind
)
{
case
OutgoingRequest
:
:
KIND_NORMAL
:
{
o3tl
::
heap
_ptr
<
IncomingReply
>
resp
(
std
::
unique
_ptr
<
IncomingReply
>
resp
(
new
IncomingReply
(
exc
,
ret
,
outArgs
));
uno_threadpool_putJob
(
bridge_
->
getThreadPool
(),
tid
.
getHandle
(),
resp
.
get
(),
0
,
...
...
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