View | Details | Raw Unified | Return to bug 345506
Collapse All | Expand All

(-)libyui/src/YUISymbols.h (+1 lines)
Lines 274-279 Link Here
274
#define YUICap_DefaultHeight			"DefaultHeight"
274
#define YUICap_DefaultHeight			"DefaultHeight"
275
#define YUICap_TextMode				"TextMode"
275
#define YUICap_TextMode				"TextMode"
276
#define YUICap_HasImageSupport			"HasImageSupport"
276
#define YUICap_HasImageSupport			"HasImageSupport"
277
#define YUICap_HasDimmImageSupport		"HasDimmImageSupport"
277
#define YUICap_HasLocalImageSupport		"HasLocalImageSupport"
278
#define YUICap_HasLocalImageSupport		"HasLocalImageSupport"
278
#define YUICap_HasAnimationSupport		"HasAnimationSupport"
279
#define YUICap_HasAnimationSupport		"HasAnimationSupport"
279
#define YUICap_HasIconSupport			"HasIconSupport"
280
#define YUICap_HasIconSupport			"HasIconSupport"
(-)libyui/src/YUI.h (+1 lines)
Lines 476-481 Link Here
476
    virtual int	 getDefaultHeight()		{ return -1; }
476
    virtual int	 getDefaultHeight()		{ return -1; }
477
    virtual bool textMode()			{ return true; }
477
    virtual bool textMode()			{ return true; }
478
    virtual bool hasImageSupport()		{ return false; }
478
    virtual bool hasImageSupport()		{ return false; }
479
    virtual bool hasDimmImageSupport()		{ return false; }
479
    virtual bool hasLocalImageSupport()		{ return true;	}
480
    virtual bool hasLocalImageSupport()		{ return true;	}
480
    virtual bool hasAnimationSupport()		{ return false; }
481
    virtual bool hasAnimationSupport()		{ return false; }
481
    virtual bool hasIconSupport()		{ return false; }
482
    virtual bool hasIconSupport()		{ return false; }
(-)libyui/src/YUI_builtins.cc (+1 lines)
Lines 1506-1511 Link Here
1506
    info_map->add( YCPString( YUICap_HasFullUtf8Support		), YCPBoolean( hasFullUtf8Support()	) );
1506
    info_map->add( YCPString( YUICap_HasFullUtf8Support		), YCPBoolean( hasFullUtf8Support()	) );
1507
    info_map->add( YCPString( YUICap_RichTextSupportsTable	), YCPBoolean( richTextSupportsTable()	) );
1507
    info_map->add( YCPString( YUICap_RichTextSupportsTable	), YCPBoolean( richTextSupportsTable()	) );
1508
    info_map->add( YCPString( YUICap_LeftHandedMouse		), YCPBoolean( leftHandedMouse()	) );
1508
    info_map->add( YCPString( YUICap_LeftHandedMouse		), YCPBoolean( leftHandedMouse()	) );
1509
    info_map->add( YCPString( YUICap_HasDimmImageSupport	), YCPBoolean( hasDimmImageSupport()	) );
1509
1510
1510
    return info_map;
1511
    return info_map;
1511
}
1512
}

Return to bug 345506