Show
Ignore:
Timestamp:
09/29/07 04:08:39 (14 months ago)
Author:
flynd
Message:

Merged a few fixes from qt4-gui.
- r5444,r5447: Don't mess with mainwin placement, fixes #291.
- r5445: Include delimiter in first part when doing message splitting, fixes #815.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/qt-gui/src/usereventdlg.cpp

    r5441 r5448  
    24942494            if (foundIndex > 0) 
    24952495            { 
    2496               message.truncate(foundIndex); 
     2496              message.truncate(foundIndex + 1); 
    24972497              messageRaw = codec->fromUnicode(message); 
    24982498            } 
     
    28082808           if (foundIndex > 0) 
    28092809           { 
    2810               message.truncate(foundIndex); 
     2810              message.truncate(foundIndex + 1); 
    28112811              messageRaw = codec->fromUnicode(message); 
    28122812           }