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
91689527
Kaydet (Commit)
91689527
authored
May 09, 2015
tarafından
Stephan Bergmann
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Clean up misguided use of EMPTYARG
Change-Id: Ib0ea9b16c3107f1d6d4ab148adcf26a5372f9417
üst
9bb254fc
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
8 deletions
+5
-8
gtksalframe.cxx
vcl/unx/gtk/window/gtksalframe.cxx
+5
-8
No files found.
vcl/unx/gtk/window/gtksalframe.cxx
Dosyayı görüntüle @
91689527
...
...
@@ -4232,12 +4232,7 @@ static bool checkSingleKeyCommitHack( guint keyval, sal_Unicode cCode )
return
bRet
;
}
#ifdef SOLARIS
#define CONTEXT_ARG pContext
#else
#define CONTEXT_ARG EMPTYARG
#endif
void
GtkSalFrame
::
IMHandler
::
signalIMCommit
(
GtkIMContext
*
CONTEXT_ARG
,
gchar
*
pText
,
gpointer
im_handler
)
void
GtkSalFrame
::
IMHandler
::
signalIMCommit
(
GtkIMContext
*
pContext
,
gchar
*
pText
,
gpointer
im_handler
)
{
GtkSalFrame
::
IMHandler
*
pThis
=
static_cast
<
GtkSalFrame
::
IMHandler
*>
(
im_handler
);
...
...
@@ -4298,13 +4293,15 @@ void GtkSalFrame::IMHandler::signalIMCommit( GtkIMContext* CONTEXT_ARG, gchar* p
pThis
->
updateIMSpotLocation
();
}
}
#ifdef SOLARIS
#ifdef SOLARIS
// #i51356# workaround a solaris IIIMP bug
// in case of partial commits the preedit changed signal
// and commit signal come in wrong order
if
(
!
aDel
.
isDeleted
()
)
signalIMPreeditChanged
(
pContext
,
im_handler
);
#endif
#else
(
void
)
pContext
;
#endif
}
void
GtkSalFrame
::
IMHandler
::
signalIMPreeditChanged
(
GtkIMContext
*
,
gpointer
im_handler
)
...
...
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