Changeset 3778
- Timestamp:
- Dec 28, 2019, 11:40:48 PM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified trunk/src/gui/common/mode.c ¶
r2592 r3778 644 644 } 645 645 646 // new mode found, read settings 647 rc = _getModeSettings( pszDirName, pmi, ulBuflen); 648 if (rc != NO_ERROR) 646 if (ulReturnType == SCANMODE_MODEINFO) 649 647 { 650 //DPRINTF(( "_scanModes: - error from _getModeSettings: %u\n", rc)); 651 rc = NO_ERROR; 652 break; 648 // new mode found, read settings 649 rc = _getModeSettings( pszDirName, pmi, ulBuflen); 650 if (rc != NO_ERROR) 651 { 652 //DPRINTF(( "_scanModes: - error from _getModeSettings: %u\n", rc)); 653 rc = NO_ERROR; 654 break; 655 } 653 656 } 654 657 … … 657 660 strcat( szModeList, pszDirName); 658 661 659 // check extension and name 660 if ((!pszExtMode) && 661 (pszExtension) && 662 (*pszExtension) && 663 (pmi->pszDefExtensions) && 664 (*pmi->pszDefExtensions) && 665 ((_globMatch( pmi->pszDefExtensions, pszExtension) || 666 (strwrd( pmi->pszDefExtensions, pszExtension))))) 667 pszExtMode = strdup( pszDirName); 668 669 if ((!pszNameMode) && 670 (pszBasename) && 671 (*pszBasename) && 672 (pmi->pszDefNames) && 673 (*pmi->pszDefNames) && 674 ((_globMatch( pmi->pszDefNames, pszBasename) || 675 (strwrd( pmi->pszDefNames, pszBasename))))) 676 pszNameMode = strdup( pszDirName); 662 if (ulReturnType == SCANMODE_MODEINFO) 663 { 664 // check extension and name 665 if ((!pszExtMode) && 666 (pszExtension) && 667 (*pszExtension) && 668 (pmi->pszDefExtensions) && 669 (*pmi->pszDefExtensions) && 670 ((_globMatch( pmi->pszDefExtensions, pszExtension) || 671 (strwrd( pmi->pszDefExtensions, pszExtension))))) 672 pszExtMode = strdup( pszDirName); 673 674 if ((!pszNameMode) && 675 (pszBasename) && 676 (*pszBasename) && 677 (pmi->pszDefNames) && 678 (*pmi->pszDefNames) && 679 ((_globMatch( pmi->pszDefNames, pszBasename) || 680 (strwrd( pmi->pszDefNames, pszBasename))))) 681 pszNameMode = strdup( pszDirName); 682 } 677 683 678 684 } while (FALSE); 679 685 680 // extension mode found? then break here 681 if (pszExtMode) 686 if (ulReturnType == SCANMODE_MODEINFO) 682 687 { 683 //DPRINTF(( "_scanModes: - ExtMode found")); 684 break; 688 // extension mode found? then break here 689 if (pszExtMode) 690 { 691 //DPRINTF(( "_scanModes: - ExtMode found")); 692 break; 693 } 685 694 } 686 695
Note:
See TracChangeset
for help on using the changeset viewer.