~ubuntu-branches/ubuntu/jaunty/kde4libs/jaunty-updates

« back to all changes in this revision

Viewing changes to kdewidgets/makekdewidgets.cpp

  • Committer: Bazaar Package Importer
  • Author(s): Harald Sitter
  • Date: 2008-12-11 18:26:08 UTC
  • mfrom: (1.1.24 upstream)
  • Revision ID: james.westby@ubuntu.com-20081211182608-tsu6p8ncbw1gnqxt
Tags: 4:4.1.85-0ubuntu1
* New upstream release
* Patches:
  + Removed 15_kfreebsd_support.diff from patches/series (doesn't apply and
    has no use for Ubuntu)
  + Redid 20_use_dejavu_as_default_font.diff
  + Completely removed kubuntu_09_fix_application_menu.diff (applied upstream)
  + Refreshed kubuntu_54_use_xdg_menu_prefix.diff
  + Dropped plasma/widgets/toolbutton.cpp from kubuntu_qt_ftbfs.diff (applied
    upstream)
  + Global quilt refresh

Show diffs side-by-side

added added

removed removed

Lines of Context:
183
183
    KConfigGroup input(&_input, name);
184
184
    QHash<QString, QString> defMap;
185
185
 
186
 
    defMap.insert( "Group", input.readEntry( "Group", group ).replace( "\"", "\\\"" ) );
 
186
    defMap.insert( "Group", input.readEntry( "Group", group ).replace( '\"', "\\\"" ) );
187
187
    defMap.insert( "IconSet", input.readEntry( "IconSet", name.toLower() + ".png" ).replace( ':', '_' ) );
188
 
    defMap.insert( "Pixmap", name.toLower().replace( ":", "_" ) + "_xpm" );
 
188
    defMap.insert( "Pixmap", name.toLower().replace( ':', '_' ) + "_xpm" );
189
189
    defMap.insert( "IncludeFile", input.readEntry( "IncludeFile", name.toLower() + ".h" ).remove( ':' ) );
190
 
    defMap.insert( "ToolTip", input.readEntry( "ToolTip", name + " Widget" ).replace( "\"", "\\\"" ) );
191
 
    defMap.insert( "WhatsThis", input.readEntry( "WhatsThis", name + " Widget" ).replace( "\"", "\\\"" ) );
 
190
    defMap.insert( "ToolTip", input.readEntry( "ToolTip", name + " Widget" ).replace( '\"', "\\\"" ) );
 
191
    defMap.insert( "WhatsThis", input.readEntry( "WhatsThis", name + " Widget" ).replace( '\"', "\\\"" ) );
192
192
    defMap.insert( "IsContainer", input.readEntry( "IsContainer", "false" ) );
193
193
    defMap.insert( "IconName", input.readEntry( "IconName", QString(":/pics/%1.png").arg( denamespace( name ).toLower() ) ) );
194
194
    defMap.insert( "Class", name );