[glom: 1/4] Remove some unnecessary casts.
- From: Murray Cumming <murrayc src gnome org>
- To: svn-commits-list gnome org
- Cc:
- Subject: [glom: 1/4] Remove some unnecessary casts.
- Date: Fri, 30 Oct 2009 16:03:07 +0000 (UTC)
commit 060231fd4e8005013007981c8cb4a001a23a7070
Author: Murray Cumming <murrayc murrayc com>
Date: Fri Oct 30 10:23:33 2009 +0100
Remove some unnecessary casts.
glom/utility_widgets/db_adddel/db_adddel.cc | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
---
diff --git a/glom/utility_widgets/db_adddel/db_adddel.cc b/glom/utility_widgets/db_adddel/db_adddel.cc
index a52f056..ff45c50 100644
--- a/glom/utility_widgets/db_adddel/db_adddel.cc
+++ b/glom/utility_widgets/db_adddel/db_adddel.cc
@@ -2016,13 +2016,13 @@ guint DbAddDel::treeview_append_column(const Glib::ustring& title, Gtk::CellRend
}
#ifdef GLOM_ENABLE_MAEMO
- cellrenderer.set_property("width", (int)column_width);
+ cellrenderer.set_property("width", column_width);
#else
if(column_width > 0) //Otherwise there's an assertion fails.
- pViewColumn->set_fixed_width((int)column_width); //This is the only way to set the width, so we need to set it as resizable again immediately afterwards.
+ pViewColumn->set_fixed_width(column_width); //This is the only way to set the width, so we need to set it as resizable again immediately afterwards.
pViewColumn->set_resizable();
- //This property is read only: pViewColumn->property_width() = (int)column_width;
+ //This property is read only: pViewColumn->property_width() = column_width;
//Save the extra ID, using the title if the column_id is empty:
const Glib::ustring column_id = m_ColumnTypes[model_column_index].m_item->get_name();
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]