summaryrefslogtreecommitdiff
path: root/TAO/TAO_IDL/include/utl_namelist.h
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/TAO_IDL/include/utl_namelist.h')
-rw-r--r--TAO/TAO_IDL/include/utl_namelist.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/TAO/TAO_IDL/include/utl_namelist.h b/TAO/TAO_IDL/include/utl_namelist.h
index 5ab4995f3e0..db5c5ed465d 100644
--- a/TAO/TAO_IDL/include/utl_namelist.h
+++ b/TAO/TAO_IDL/include/utl_namelist.h
@@ -80,22 +80,22 @@ trademarks or registered trademarks of Sun Microsystems, Inc.
class TAO_IDL_FE_Export UTL_NameList : public UTL_List
{
public:
- UTL_NameList (UTL_ScopedName *s,
+ UTL_NameList (UTL_ScopedName *s,
UTL_NameList *cdr);
// Get list item.
UTL_ScopedName *head (void);
// Accessors.
- bool truncatable (void) const;
- void truncatable (bool val);
+ idl_bool truncatable (void) const;
+ void truncatable (idl_bool val);
private:
// List item.
UTL_ScopedName *pd_car_data;
// Used only with valuetye inheritance list. Defualts to 0.
- bool pd_truncatable;
+ idl_bool pd_truncatable;
};
// Active iterator for UTL_NameList.