summaryrefslogtreecommitdiffstats
path: root/filters
diff options
context:
space:
mode:
Diffstat (limited to 'filters')
-rw-r--r--filters/chalk/xcf/xcf/xcf-load.cpp2
-rw-r--r--filters/chalk/xcf/xcf/xcf-save.cpp10
-rw-r--r--filters/kspread/gnumeric/gnumericimport.cpp2
-rw-r--r--filters/kword/pdf/xpdf/xpdf/XPDFTree.cpp8
-rw-r--r--filters/kword/rtf/import/rtfimport.cpp4
5 files changed, 13 insertions, 13 deletions
diff --git a/filters/chalk/xcf/xcf/xcf-load.cpp b/filters/chalk/xcf/xcf/xcf-load.cpp
index 034e5261a..9155b5057 100644
--- a/filters/chalk/xcf/xcf/xcf-load.cpp
+++ b/filters/chalk/xcf/xcf/xcf-load.cpp
@@ -119,7 +119,7 @@ xcf_load_image (XcfInfo * info)
info->cp += xcf_read_int32 (info->fp, (TQ_INT32 *) & height, 1);
info->cp += xcf_read_int32 (info->fp, (TQ_INT32 *) & image_type, 1);
- gimage = gimp_create_image (gimp, width, height, image_type, FALSE);
+ gimage = gimp_create_image (gimp, width, height, image_type, 0);
gimp_image_undo_disable (gimage);
diff --git a/filters/chalk/xcf/xcf/xcf-save.cpp b/filters/chalk/xcf/xcf/xcf-save.cpp
index 25abdfa6a..ffcdafbf5 100644
--- a/filters/chalk/xcf/xcf/xcf-save.cpp
+++ b/filters/chalk/xcf/xcf/xcf-save.cpp
@@ -270,7 +270,7 @@ xcf_save_image (XcfInfo *info,
floating_layer = gimp_image_floating_sel (gimage);
if (floating_layer)
- floating_sel_relax (floating_layer, FALSE);
+ floating_sel_relax (floating_layer, 0);
/* write out the tag information for the image */
if (info->file_version > 0)
@@ -403,7 +403,7 @@ xcf_save_image (XcfInfo *info,
saved_pos = info->cp;
if (floating_layer)
- floating_sel_rigor (floating_layer, FALSE);
+ floating_sel_rigor (floating_layer, 0);
return !ferror(info->fp);
}
@@ -518,11 +518,11 @@ xcf_save_layer_props (XcfInfo *info,
else
{
xcf_check_error (xcf_save_prop (info, gimage, PROP_APPLY_MASK,
- error, FALSE));
+ error, 0));
xcf_check_error (xcf_save_prop (info, gimage, PROP_EDIT_MASK,
- error, FALSE));
+ error, 0));
xcf_check_error (xcf_save_prop (info, gimage, PROP_SHOW_MASK,
- error, FALSE));
+ error, 0));
}
xcf_check_error (xcf_save_prop (info, gimage, PROP_OFFSETS, error,
diff --git a/filters/kspread/gnumeric/gnumericimport.cpp b/filters/kspread/gnumeric/gnumericimport.cpp
index 4ba332815..89ba58c9c 100644
--- a/filters/kspread/gnumeric/gnumericimport.cpp
+++ b/filters/kspread/gnumeric/gnumericimport.cpp
@@ -1930,7 +1930,7 @@ KoFilter::ConversionStatus GNUMERICFilter::convert( const TQCString & from, cons
// This is a mapping of exprID to expressions.
- TQDict<char> exprID_dict( 17, FALSE );
+ TQDict<char> exprID_dict( 17, 0 );
int num = 1;
while (!sheet.isNull())
diff --git a/filters/kword/pdf/xpdf/xpdf/XPDFTree.cpp b/filters/kword/pdf/xpdf/xpdf/XPDFTree.cpp
index edc7fb8fc..50051d39d 100644
--- a/filters/kword/pdf/xpdf/xpdf/XPDFTree.cpp
+++ b/filters/kword/pdf/xpdf/xpdf/XPDFTree.cpp
@@ -134,7 +134,7 @@ externaldef(xpdftreeclassrec) XPDFTreeClassRec xpdfTreeClassRec = {
sizeof(XPDFTreeRec), // widget_size
NULL, // class_initialize
&classPartInitialize, // class_part_initialize
- FALSE, // class_inited
+ False, // class_inited
&initialize, // initialize
NULL, // initialize_hook
XtInheritRealize, // realize
@@ -143,10 +143,10 @@ externaldef(xpdftreeclassrec) XPDFTreeClassRec xpdfTreeClassRec = {
resources, // resources
XtNumber(resources), // num_resources
NULLQUARK, // xrm_class
- TRUE, // compress_motion
+ True, // compress_motion
XtExposeCompressMaximal, // compress_exposure
- TRUE, // compress_enterleave
- FALSE, // visible_interest
+ True, // compress_enterleave
+ False, // visible_interest
&destroy, // destroy
&resize, // resize
&redisplay, // expose
diff --git a/filters/kword/rtf/import/rtfimport.cpp b/filters/kword/rtf/import/rtfimport.cpp
index 372751732..12721e201 100644
--- a/filters/kword/rtf/import/rtfimport.cpp
+++ b/filters/kword/rtf/import/rtfimport.cpp
@@ -122,9 +122,9 @@ static RTFProperty propertyTable[] =
PROP( "Text", "cell", insertTableCell, 0L, 0 ),
PROP( 0L, "cellx", insertCellDef, 0L, 0 ),
MEMBER( 0L, "cf", setNumericProperty, state.format.color, 0 ),
- PROP( 0L, "chdate", insertDateTime, 0L, TRUE ),
+ PROP( 0L, "chdate", insertDateTime, 0L, 1 ),
PROP( 0L, "chpgn", insertPageNumber, 0L, 0 ),
- PROP( 0L, "chtime", insertDateTime, 0L, FALSE ),
+ PROP( 0L, "chtime", insertDateTime, 0L, 0 ),
PROP( 0L, "clbrdrb", selectLayoutBorderFromCell, 0L, 3 ),
PROP( 0L, "clbrdrl", selectLayoutBorderFromCell, 0L, 0 ),
PROP( 0L, "clbrdrr", selectLayoutBorderFromCell, 0L, 1 ),