|
2 | 2 |
|
3 | 3 | codesets.library - Amiga shared library for handling different codesets |
4 | 4 | Copyright (C) 2001-2005 by Alfonso [alfie] Ranieri <alforan@tin.it>. |
5 | | - Copyright (C) 2005-2017 codesets.library Open Source Team |
| 5 | + Copyright (C) 2005-2018 codesets.library Open Source Team |
6 | 6 |
|
7 | 7 | This library is free software; you can redistribute it and/or |
8 | 8 | modify it under the terms of the GNU Lesser General Public |
@@ -80,7 +80,7 @@ long __stack = 8192; |
80 | 80 |
|
81 | 81 | struct Library *MUIMasterBase = NULL; |
82 | 82 | struct Library *CodesetsBase = NULL; |
83 | | -#ifdef __AROS__ |
| 83 | +#if defined(__AROS__) || defined(__amigaos3__) |
84 | 84 | struct UtilityBase *UtilityBase = NULL; |
85 | 85 | #else |
86 | 86 | struct Library *UtilityBase = NULL; |
@@ -801,7 +801,7 @@ main(UNUSED int argc,char **argv) |
801 | 801 | GETINTERFACE(IMUIMaster, MUIMasterBase)) |
802 | 802 | { |
803 | 803 | /* Create classes */ |
804 | | - if ((appClass = MUI_CreateCustomClass(NULL, MUIC_Application, NULL, sizeof(struct appData), ENTRY(appDispatcher))) && |
| 804 | + if ((appClass = MUI_CreateCustomClass(NULL, MUIC_Application, NULL, sizeof(struct appData), ENTRY(appDispatcher))) && |
805 | 805 | (popupCodesetsClass = MUI_CreateCustomClass(NULL, MUIC_Popobject, NULL, 0, ENTRY(popupDispatcher))) && |
806 | 806 | (editorClass = MUI_CreateCustomClass(NULL, MUIC_TextEditor, NULL, sizeof(struct editorData), ENTRY(editorDispatcher)))) |
807 | 807 | { |
|
0 commit comments