Changeset 148 for trunk/launch


Ignore:
Timestamp:
10/24/03 01:05:51 (21 years ago)
Author:
Nicholas Riley
Message:

main.c: replaced error constants with numbers for 10.3+ LaunchServices errors

Location:
trunk/launch/launch
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/launch/launch/launch.pbproj/nicholas.pbxuser

    r146 r148  
    1717                perUserDictionary = {
    1818                        PBXConfiguration.PBXFileTableDataSource3.PBXErrorsWarningsDataSource = {
    19                                 PBXFileTableDataSourceColumnSortingDirectionKey = -1;
     19                                PBXFileTableDataSourceColumnSortingDirectionKey = "-1";
    2020                                PBXFileTableDataSourceColumnSortingKey = PBXErrorsWarningsDataSource_LocationID;
    2121                                PBXFileTableDataSourceColumnWidthsKey = (
     
    4343                        };
    4444                        PBXConfiguration.PBXFileTableDataSource3.PBXFileTableDataSource = {
    45                                 PBXFileTableDataSourceColumnSortingDirectionKey = -1;
     45                                PBXFileTableDataSourceColumnSortingDirectionKey = "-1";
    4646                                PBXFileTableDataSourceColumnSortingKey = PBXFileDataSource_Filename_ColumnID;
    4747                                PBXFileTableDataSourceColumnWidthsKey = (
     
    7676                                );
    7777                        };
    78                         PBXPerProjectTemplateStateSaveDate = 88634057;
     78                        PBXPerProjectTemplateStateSaveDate = 88649579;
    7979                        PBXWorkspaceContents = (
    8080                                {
     
    277277                                WindowFrame = "{{723, 149}, {517, 249}}";
    278278                        };
    279                         PBXWorkspaceStateSaveDate = 88634057;
     279                        PBXWorkspaceStateSaveDate = 88649579;
    280280                };
    281281                perUserProjectItems = {
     
    302302        08FB7796FE84155DC02AAC07 = {
    303303                uiCtxt = {
    304                         sepNavIntBoundsRect = "{{0, 0}, {559, 13579}}";
    305                         sepNavSelRange = "{33212, 0}";
    306                         sepNavVisRect = "{{0, 12355}, {559, 169}}";
     304                        sepNavIntBoundsRect = "{{0, 0}, {578, 13369}}";
     305                        sepNavSelRange = "{3507, 26}";
     306                        sepNavVisRect = "{{0, 996}, {578, 654}}";
    307307                        sepNavWindowFrame = "{{265, 76}, {725, 703}}";
    308308                };
     
    368368                refType = 0;
    369369                sourceTree = "<absolute>";
    370                 uiCtxt = {
    371                         sepNavIntBoundsRect = "{{0, 0}, {554, 6019}}";
    372                         sepNavSelRange = "{18538, 58}";
    373                         sepNavVisRect = "{{0, 5362}, {554, 654}}";
    374                 };
    375370        };
    376371        E11E9B950544EE9700045D4F = {
     
    388383                refType = 0;
    389384                sourceTree = "<absolute>";
    390                 uiCtxt = {
    391                         sepNavIntBoundsRect = "{{0, 0}, {578, 3891}}";
    392                         sepNavSelRange = "{2548, 27}";
    393                         sepNavVisRect = "{{0, 856}, {578, 654}}";
    394                 };
    395385        };
    396386        E1375C530530898300FE8BF8 = {
     
    473463                name = "handle URL/file arguments";
    474464                rLen = 0;
    475                 rLoc = 17894;
     465                rLoc = 17962;
    476466                rType = 0;
    477467                vrLen = 1773;
     
    521511                name = "main.c: 805";
    522512                rLen = 5;
    523                 rLoc = 33076;
     513                rLoc = 33144;
    524514                rType = 0;
    525515                vrLen = 1438;
     
    541531                name = "main.c: 805";
    542532                rLen = 0;
    543                 rLoc = 33089;
     533                rLoc = 33157;
    544534                rType = 0;
    545535                vrLen = 1436;
     
    558548                name = "main.c: 809";
    559549                rLen = 0;
    560                 rLoc = 33212;
     550                rLoc = 33280;
    561551                rType = 0;
    562552                vrLen = 325;
  • trunk/launch/launch/main.c

    r146 r148  
    8585    { kLSLaunchInProgressErr, "application is being opened; please try again after the application is open" },
    8686    { kLSNotRegisteredErr, "application not registered in Launch Services database" },
    87     { kLSNoExecutableErr, "application package contains no executable, or an unusable executable" },
    88     { kLSNoClassicEnvironmentErr, "Classic environment required but not available" },
     87    { -10827, "application package contains no executable, or an unusable executable" }, /* kLSNoExecutableErr, not defined in 10.2 */
     88    { -10828, "Classic environment required but not available" }, /* kLSNoClassicEnvironmentErr, not defined in 10.2 */
    8989#ifndef BROKEN_AUTHORIZATION
    9090    // Security framework errors
Note: See TracChangeset for help on using the changeset viewer.