summaryrefslogtreecommitdiff
path: root/src/TextAction.c
diff options
context:
space:
mode:
authorAlan Coopersmith <alan.coopersmith@oracle.com>2011-09-17 00:46:25 -0700
committerAlan Coopersmith <alan.coopersmith@oracle.com>2011-09-17 09:37:08 -0700
commit7e8ed65401fd140b8dbf8f0bad4849f2b204ccb5 (patch)
tree42fb9eec765a3cacfa01b96359fa46e83ecafe89 /src/TextAction.c
parent29ee09ca07a41c07723e87fa1581762dc35a4725 (diff)
Fix several unused variable warnings
All but one are due to variables defined outside #ifdef's but only used inside #ifdef'ed code blocks. Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> Reviewed-by: Matt Turner <mattst88@gmail.com>
Diffstat (limited to 'src/TextAction.c')
-rw-r--r--src/TextAction.c10
1 files changed, 6 insertions, 4 deletions
diff --git a/src/TextAction.c b/src/TextAction.c
index 1de645a..7d1afcb 100644
--- a/src/TextAction.c
+++ b/src/TextAction.c
@@ -1278,9 +1278,9 @@ TextFocusOut(Widget w, XEvent *event, String *p, Cardinal *n)
static void
TextEnterWindow(Widget w, XEvent *event, String *params, Cardinal *num_params)
{
+#ifdef XAW_INTERNATIONALIZATION
TextWidget ctx = (TextWidget) w;
-#ifdef XAW_INTERNATIONALIZATION
if ((event->xcrossing.detail != NotifyInferior) && event->xcrossing.focus &&
!ctx->text.hasfocus) {
_XawImSetFocusValues(w, NULL, 0);
@@ -1292,9 +1292,9 @@ TextEnterWindow(Widget w, XEvent *event, String *params, Cardinal *num_params)
static void
TextLeaveWindow(Widget w, XEvent *event, String *params, Cardinal *num_params)
{
+#ifdef XAW_INTERNATIONALIZATION
TextWidget ctx = (TextWidget) w;
-#ifdef XAW_INTERNATIONALIZATION
if ((event->xcrossing.detail != NotifyInferior) && event->xcrossing.focus &&
!ctx->text.hasfocus) {
_XawImUnsetFocus(w);
@@ -1509,7 +1509,9 @@ static void
InsertString(Widget w, XEvent *event, String *params, Cardinal *num_params)
{
TextWidget ctx = (TextWidget) w;
+#ifdef XAW_INTERNATIONALIZATION
XtAppContext app_con = XtWidgetToApplicationContext(w);
+#endif
XawTextBlock text;
int i;
@@ -1663,7 +1665,6 @@ StripOutOldCRs(TextWidget ctx, XawTextPosition from, XawTextPosition to)
Widget src = ctx->text.source;
XawTextBlock text;
char *buf;
- static wchar_t wc_two_spaces[ 3 ];
/* Initialize our TextBlock with two spaces. */
@@ -1673,6 +1674,7 @@ StripOutOldCRs(TextWidget ctx, XawTextPosition from, XawTextPosition to)
text.ptr= " ";
#ifdef XAW_INTERNATIONALIZATION
else {
+ static wchar_t wc_two_spaces[ 3 ];
wc_two_spaces[0] = _Xaw_atowc(XawSP);
wc_two_spaces[1] = _Xaw_atowc(XawSP);
wc_two_spaces[2] = 0;
@@ -1761,7 +1763,6 @@ InsertNewCRs(TextWidget ctx, XawTextPosition from, XawTextPosition to)
XawTextBlock text;
int i, width, height, len;
char * buf;
- static wchar_t wide_CR[ 2 ];
text.firstPos = 0;
text.length = 1;
@@ -1771,6 +1772,7 @@ InsertNewCRs(TextWidget ctx, XawTextPosition from, XawTextPosition to)
text.ptr = "\n";
#ifdef XAW_INTERNATIONALIZATION
else {
+ static wchar_t wide_CR[ 2 ];
wide_CR[0] = _Xaw_atowc(XawLF);
wide_CR[1] = 0;
text.ptr = (char*) wide_CR;