diff options
author | evan@chromium.org <evan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-08-05 19:42:38 +0000 |
---|---|---|
committer | evan@chromium.org <evan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-08-05 19:42:38 +0000 |
commit | 1ccbd41da6c7bae339c04c45ddd74596a2b8b9fe (patch) | |
tree | 32253272b095adc505c156559bcbee0c3b19b479 /chrome/browser/gtk/options/advanced_contents_gtk.cc | |
parent | 857426ccb3e0aa63433be5cf77b16e85b915281a (diff) | |
download | chromium_src-1ccbd41da6c7bae339c04c45ddd74596a2b8b9fe.zip chromium_src-1ccbd41da6c7bae339c04c45ddd74596a2b8b9fe.tar.gz chromium_src-1ccbd41da6c7bae339c04c45ddd74596a2b8b9fe.tar.bz2 |
linux: rearrange widget layout in importer dialog
I'm not especially happy with how it looks now, though I think it's
better than before.
Review URL: http://codereview.chromium.org/160661
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@22512 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/gtk/options/advanced_contents_gtk.cc')
-rw-r--r-- | chrome/browser/gtk/options/advanced_contents_gtk.cc | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/chrome/browser/gtk/options/advanced_contents_gtk.cc b/chrome/browser/gtk/options/advanced_contents_gtk.cc index 4e615e5..a4dd27f 100644 --- a/chrome/browser/gtk/options/advanced_contents_gtk.cc +++ b/chrome/browser/gtk/options/advanced_contents_gtk.cc @@ -208,7 +208,7 @@ DownloadSection::DownloadSection(Profile* profile) reset_file_handlers_button_, FALSE, FALSE, 0); gtk_box_pack_start(GTK_BOX(page_), - OptionsLayoutBuilderGtk::IndentWidget(button_hbox), + gtk_util::IndentWidget(button_hbox), FALSE, FALSE, 0); // Init prefs watchers. @@ -332,7 +332,7 @@ NetworkSection::NetworkSection(Profile* profile) change_proxies_button, FALSE, FALSE, 0); gtk_box_pack_start(GTK_BOX(page_), - OptionsLayoutBuilderGtk::IndentWidget(button_hbox), + gtk_util::IndentWidget(button_hbox), FALSE, FALSE, 0); } @@ -535,7 +535,7 @@ PrivacySection::PrivacySection(Profile* profile) GtkWidget* cookie_controls = gtk_vbox_new(FALSE, gtk_util::kControlSpacing); gtk_box_pack_start(GTK_BOX(page_), - OptionsLayoutBuilderGtk::IndentWidget(cookie_controls), + gtk_util::IndentWidget(cookie_controls), FALSE, FALSE, 0); cookie_behavior_combobox_ = gtk_combo_box_new_text(); @@ -808,8 +808,8 @@ SecuritySection::SecuritySection(Profile* profile) GtkWidget* manage_certificates_hbox = gtk_hbox_new(FALSE, 0); gtk_box_pack_start(GTK_BOX(manage_certificates_hbox), manage_certificates_link, FALSE, FALSE, 0); - gtk_box_pack_start(GTK_BOX(page_), OptionsLayoutBuilderGtk::IndentWidget( - manage_certificates_hbox), + gtk_box_pack_start(GTK_BOX(page_), + gtk_util::IndentWidget(manage_certificates_hbox), FALSE, FALSE, 0); g_signal_connect(manage_certificates_link, "clicked", G_CALLBACK(OnManageCertificatesClicked), this); @@ -869,7 +869,7 @@ WebContentSection::WebContentSection(Profile* profile) fonts_and_languages_button, FALSE, FALSE, 0); gtk_box_pack_start(GTK_BOX(page_), - OptionsLayoutBuilderGtk::IndentWidget(button_hbox), + gtk_util::IndentWidget(button_hbox), FALSE, FALSE, 0); // TODO(mattm): gears options would go here if we supported gears |