comparison win/dw.c @ 2284:3361ce6070ce

Add DW_FEATURE_TASK_BAR to the feature tests, for taskbar icon support. Not having this earlier was probably an oversight, but added it because GTK4 removes the widget that allowed this support.
author bsmith@81767d24-ef19-dc11-ae90-00e081727c95
date Wed, 03 Feb 2021 21:44:15 +0000
parents 281e2df2c022
children 1cffb66cf7b8
comparison
equal deleted inserted replaced
2283:0c88059df8e9 2284:3361ce6070ce
13889 if(hmsftedit || hrichedit) 13889 if(hmsftedit || hrichedit)
13890 return _DW_MLE_RICH_EDIT; 13890 return _DW_MLE_RICH_EDIT;
13891 return DW_FEATURE_UNSUPPORTED; 13891 return DW_FEATURE_UNSUPPORTED;
13892 } 13892 }
13893 #endif 13893 #endif
13894 case DW_FEATURE_TASK_BAR:
13894 default: 13895 default:
13895 return DW_FEATURE_UNSUPPORTED; 13896 return DW_FEATURE_UNSUPPORTED;
13896 } 13897 }
13897 } 13898 }
13898 13899
13967 return DW_ERROR_NONE; 13968 return DW_ERROR_NONE;
13968 } 13969 }
13969 return DW_ERROR_GENERAL; 13970 return DW_ERROR_GENERAL;
13970 } 13971 }
13971 #endif 13972 #endif
13973 case DW_FEATURE_TASK_BAR:
13974 return DW_ERROR_GENERAL;
13972 default: 13975 default:
13973 return DW_FEATURE_UNSUPPORTED; 13976 return DW_FEATURE_UNSUPPORTED;
13974 } 13977 }
13975 } 13978 }
13976 13979