Changeset 34278 in webkit


Ignore:
Timestamp:
May 31, 2008 1:46:53 PM (16 years ago)
Author:
alp@webkit.org
Message:

2008-05-31 Alp Toker <alp@nuanti.com>

Fix inconsistent zoom docs and enum name landed in r34249. Issue
noticed by Marco Barisione.

  • webkit/webkitwebview.cpp:
Location:
trunk/WebKit/gtk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebKit/gtk/ChangeLog

    r34263 r34278  
     12008-05-31  Alp Toker  <alp@nuanti.com>
     2
     3        Fix inconsistent zoom docs and enum name landed in r34249. Issue
     4        noticed by Marco Barisione.
     5
     6        * webkit/webkitwebview.cpp:
     7
    182008-05-30  Carlos Martín Nieto  <carlos@cmartin.tk>
    29
  • trunk/WebKit/gtk/webkit/webkitwebview.cpp

    r34263 r34278  
    102102    PROP_TRANSPARENT,
    103103    PROP_ZOOM_LEVEL,
    104     PROP_ZOOM_TEXT_ONLY
     104    PROP_FULL_CONTENT_ZOOM
    105105};
    106106
     
    241241        g_value_set_float(value, webkit_web_view_get_zoom_level(webView));
    242242        break;
    243     case PROP_ZOOM_TEXT_ONLY:
     243    case PROP_FULL_CONTENT_ZOOM:
    244244        g_value_set_boolean(value, webkit_web_view_get_full_content_zoom(webView));
    245245        break;
     
    266266        webkit_web_view_set_zoom_level(webView, g_value_get_float(value));
    267267        break;
    268     case PROP_ZOOM_TEXT_ONLY:
     268    case PROP_FULL_CONTENT_ZOOM:
    269269        webkit_web_view_set_full_content_zoom(webView, g_value_get_boolean(value));
    270270        break;
     
    12301230                                                       WEBKIT_PARAM_READWRITE));
    12311231
    1232     g_object_class_install_property(objectClass, PROP_ZOOM_TEXT_ONLY,
     1232    g_object_class_install_property(objectClass, PROP_FULL_CONTENT_ZOOM,
    12331233                                    g_param_spec_boolean("full-content-zoom",
    1234                                                          "Text-only zoom",
    1235                                                          "Whether only the text size is changed when zooming",
     1234                                                         "Full content zoom",
     1235                                                         "Whether the full content is scaled when zooming",
    12361236                                                         FALSE,
    12371237                                                         WEBKIT_PARAM_READWRITE));
Note: See TracChangeset for help on using the changeset viewer.