Changeset 2494

Show
Ignore:
Timestamp:
11/11/08 13:43:01 (8 weeks ago)
Author:
bzr
Message:

* Fixed a little problem with script_title causing an error when application exits silently and no other application gains focus

Location:
trunk
Files:
1 added
2 modified

Legend:

Unmodified
Added
Removed
  • trunk

    • Property bzr:revision-info
      •  

        old new  
        1 timestamp: 2008-11-11 22:55:36.428999901 +1100 
        2 committer: Michael Curran <mick@kulgan.net> 
         1timestamp: 2008-11-11 14:42:23.398000002 +0100 
         2committer: Peter Vágner <peter.v@datagate.sk> 
        33properties:  
        44        branch-nick: main 
    • Property bzr:revision-id:v3-list-QlpoOTFBWSZTWbrL2vUAAB1VgAAQABCAQDrrnqAgAFCgaaGRkxBoTIJ6mmaNRwhndFAoNhZjh_YY4a01fOg1ulgNNC2UrzPdXXEnDpX8XckU4UJC6y9r1A..
      •  

        old new  
        2632632291 jamie@jantrid.net-20081111020033-pzhx3l8q2rvmerlv 
        2642642292 mick@kulgan.net-20081111115536-4010omrj0yzvubsn 
         2652293 peter.v@datagate.sk-20081111134223-egai5qic7a5sxefg 
    • Property bzr:file-ids
      •  

        old new  
        1 installer/nvda.nsi      519@dbe06fc7-9119-0410-a01d-9dbf589ecbba:trunk:installer%2Fnvda.nsi 
        2 source/api.py   46@dbe06fc7-9119-0410-a01d-9dbf589ecbba:trunk:source%2Fapi.py 
        3 source/builtin.dic      1848@dbe06fc7-9119-0410-a01d-9dbf589ecbba:trunk:source%2Fspeechdicts%2Fdefault.dic 
        4 source/config/__init__.py       46@dbe06fc7-9119-0410-a01d-9dbf589ecbba:trunk:source%2Fconfig%2F__init__.py 
        5 source/core.py  49@dbe06fc7-9119-0410-a01d-9dbf589ecbba:trunk:source%2Fcore.py 
        6 source/nvda.pyw 475@dbe06fc7-9119-0410-a01d-9dbf589ecbba:trunk:source%2Fnvda.pyw 
        7 source/setup.py 46@dbe06fc7-9119-0410-a01d-9dbf589ecbba:trunk:source%2Fsetup.py 
        8 source/speechDictHandler.py     1848@dbe06fc7-9119-0410-a01d-9dbf589ecbba:trunk:source%2FspeechDictHandler.py 
        9 source/synthDriverHandler.py    97@dbe06fc7-9119-0410-a01d-9dbf589ecbba:trunk:source%2FsynthDriverHandler.py 
        10 user_docs/whats%20new.txt       559@dbe06fc7-9119-0410-a01d-9dbf589ecbba:trunk:user_docs%2Fwhats%20new.txt 
         1source/appModules/_default.py   92@dbe06fc7-9119-0410-a01d-9dbf589ecbba:trunk:source%2FappModules%2F_default.py 
         2source/speechDictHandler.py     speechdicthandler.py-20081111133523-v8ija7vy1otjvpo9-1 
    • Property bzr:text-parents
      •  

        old new  
        1 installer/nvda.nsi      mick@kulgan.net-20081111011336-vyjr4ckpgw1id60v 
        2 source/api.py   jamie@jantrid.net-20081111000130-ogbjmubm7hbp2w8b 
        3 source/builtin.dic      jamie@jantrid.net-20081111020432-cq91do2ohrbdnn3k 
        4 source/config/__init__.py       jamie@jantrid.net-20081111050702-md0ib7fbd6r5scsh 
        5 source/core.py  jamie@jantrid.net-20081111024153-2s812gqcfug4e3ms 
        6 source/nvda.pyw mick@kulgan.net-20081110092815-eua72ap9o5gxht9o 
        7 source/setup.py jamie@jantrid.net-20081111024453-ht5z2l2ny3s4vt44 
        8 source/speechDictHandler.py     jamie@jantrid.net-20081111024153-2s812gqcfug4e3ms 
        9 source/synthDriverHandler.py    jamie@jantrid.net-20081111021520-lfmlgtkovxoech8e 
        10 user_docs/whats%20new.txt       jamie@jantrid.net-20081111044917-m1lxw7wa76jwlkoa 
  • trunk/source/appModules/_default.py

    r2468 r2494  
    639639                title=obj.name 
    640640                if not isinstance(title,basestring) or not title or title.isspace(): 
    641                         title=obj.appModule.appName 
     641                        title=obj.appModule.appName  if obj.appModule else None 
    642642                        if not isinstance(title,basestring) or not title or title.isspace(): 
    643643                                title=_("no title")