Update AUTHORS file and minor variable rename

Add recognition for the work done by Markus Elfring.
Also minor variable rename and added comment for patch to bug #634090.
This commit is contained in:
Curtis Gedak 2011-07-14 10:38:59 -06:00
parent 91b971691d
commit 813010b148
3 changed files with 11 additions and 5 deletions

View file

@ -36,6 +36,11 @@ Luca Bruno <lucab@debian.org>
* Created btrfs.h, btrfs.c to support btrfs file system.
* Wrote patch for initial btrfs support.
Markus Elfring <elfring@users.sourceforge.net>
* Wrote patch to change some local Dialog attributes to variables
* Wrote small patch to delete unnecessary null pointer checks
* Wrote small patch to add complete quoting for macro parameters
Michael Monreal <michael.monreal@gmx.net>
* Wrote small patch to implement themed app icon in hicolor

View file

@ -214,12 +214,12 @@ void Dialog_Base_Partition::Set_Confirm_Button( CONFIRMBUTTON button_type )
case RESIZE_MOVE:
{
Gtk::Image* image_temp(manage(new Gtk::Image(Gtk::Stock::GOTO_LAST, Gtk::ICON_SIZE_BUTTON)));
Gtk::HBox* box_resize_move(manage(new Gtk::HBox()));
Gtk::HBox* hbox_resize_move(manage(new Gtk::HBox()));
box_resize_move->pack_start(*image_temp, Gtk::PACK_EXPAND_PADDING);
box_resize_move->pack_start(*Utils::mk_label(fixed_start ? _("Resize") : _("Resize/Move")),
hbox_resize_move->pack_start(*image_temp, Gtk::PACK_EXPAND_PADDING);
hbox_resize_move->pack_start(*Utils::mk_label(fixed_start ? _("Resize") : _("Resize/Move")),
Gtk::PACK_EXPAND_PADDING);
button_resize_move.add(*box_resize_move);
button_resize_move.add(*hbox_resize_move);
}
this ->add_action_widget ( button_resize_move, Gtk::RESPONSE_OK ) ;

View file

@ -308,10 +308,11 @@ void Dialog_Partition_New::optionmenu_changed( bool type )
//set fitting resizer colors
{
Gdk::Color color_temp;
//Background color
color_temp.set((optionmenu_type.get_history() == 2) ? "darkgrey" : "white");
frame_resizer_base->override_default_rgb_unused_color(color_temp);
//Partition color
color_temp.set(Utils::get_color(fs.filesystem));
frame_resizer_base->set_rgb_partition_color(color_temp);
}