Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
G
gnumeric
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Tapasweni Pathak
gnumeric
Commits
3123a53b
Commit
3123a53b
authored
Mar 20, 2006
by
Jody Goldberg
Committed by
Jody Goldberg
Mar 20, 2006
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Release 1.6.3
2006-03-19 Jody Goldberg <jody@gnome.org> * Release 1.6.3
parent
eb6bff3e
Changes
21
Hide whitespace changes
Inline
Side-by-side
Showing
21 changed files
with
92 additions
and
18 deletions
+92
-18
plugins/python-loader/ChangeLog
plugins/python-loader/ChangeLog
+4
-0
plugins/qpro/ChangeLog
plugins/qpro/ChangeLog
+4
-0
plugins/sample_datasource/ChangeLog
plugins/sample_datasource/ChangeLog
+4
-0
plugins/sc/ChangeLog
plugins/sc/ChangeLog
+4
-0
plugins/sylk/ChangeLog
plugins/sylk/ChangeLog
+4
-0
plugins/uihello/ChangeLog
plugins/uihello/ChangeLog
+4
-0
plugins/xbase/ChangeLog
plugins/xbase/ChangeLog
+4
-0
po-functions/ChangeLog
po-functions/ChangeLog
+4
-0
po/ChangeLog
po/ChangeLog
+4
-0
src/cell.h
src/cell.h
+7
-7
src/dialogs/ChangeLog
src/dialogs/ChangeLog
+4
-0
src/gnm-style-impl.h
src/gnm-style-impl.h
+1
-1
src/tools/ChangeLog
src/tools/ChangeLog
+4
-0
src/tools/solver/ChangeLog
src/tools/solver/ChangeLog
+4
-0
src/tools/solver/glpk/ChangeLog
src/tools/solver/glpk/ChangeLog
+4
-0
src/tools/solver/lp_solve/ChangeLog
src/tools/solver/lp_solve/ChangeLog
+4
-0
src/wbc-gtk.c
src/wbc-gtk.c
+11
-2
src/wbcg-actions.c
src/wbcg-actions.c
+1
-1
src/widgets/ChangeLog
src/widgets/ChangeLog
+4
-0
src/workbook-control-gui.c
src/workbook-control-gui.c
+8
-7
tools/ChangeLog
tools/ChangeLog
+4
-0
No files found.
plugins/python-loader/ChangeLog
View file @
3123a53b
2006-03-19 Jody Goldberg <jody@gnome.org>
* Release 1.6.3
2006-01-30 Jody Goldberg <jody@gnome.org>
* Release 1.6.2
...
...
plugins/qpro/ChangeLog
View file @
3123a53b
2006-03-19 Jody Goldberg <jody@gnome.org>
* Release 1.6.3
2006-01-30 Jody Goldberg <jody@gnome.org>
* Release 1.6.2
...
...
plugins/sample_datasource/ChangeLog
View file @
3123a53b
2006-03-19 Jody Goldberg <jody@gnome.org>
* Release 1.6.3
2006-01-30 Jody Goldberg <jody@gnome.org>
* Release 1.6.2
...
...
plugins/sc/ChangeLog
View file @
3123a53b
2006-03-19 Jody Goldberg <jody@gnome.org>
* Release 1.6.3
2006-01-30 Jody Goldberg <jody@gnome.org>
* Release 1.6.2
...
...
plugins/sylk/ChangeLog
View file @
3123a53b
2006-03-19 Jody Goldberg <jody@gnome.org>
* Release 1.6.3
2006-01-30 Jody Goldberg <jody@gnome.org>
* Release 1.6.2
...
...
plugins/uihello/ChangeLog
View file @
3123a53b
2006-03-19 Jody Goldberg <jody@gnome.org>
* Release 1.6.3
2006-01-30 Jody Goldberg <jody@gnome.org>
* Release 1.6.2
...
...
plugins/xbase/ChangeLog
View file @
3123a53b
2006-03-19 Jody Goldberg <jody@gnome.org>
* Release 1.6.3
2006-03-01 Morten Welinder <terra@gnome.org>
* xbase.c (xbase_read_header): Fall back to using ISO-8859-1.
...
...
po-functions/ChangeLog
View file @
3123a53b
2006-03-19 Jody Goldberg <jody@gnome.org>
* Release 1.6.3
2006-01-30 Jody Goldberg <jody@gnome.org>
* Release 1.6.2
...
...
po/ChangeLog
View file @
3123a53b
2006-03-19 Jody Goldberg <jody@gnome.org>
* Release 1.6.3
2006-01-30 Jody Goldberg <jody@gnome.org>
* Release 1.6.2
...
...
src/cell.h
View file @
3123a53b
...
...
@@ -55,13 +55,13 @@ gboolean cell_is_zero (GnmCell const *cell);
gboolean
cell_is_partial_array
(
GnmCell
const
*
cell
);
GnmExprArray
const
*
cell_is_array
(
GnmCell
const
*
cell
);
#define cell_eval(cell) \
{
\
if (cell_needs_recalc (cell)) {
\
cell_eval_content (cell);
\
cell->base.flags &= ~(DEPENDENT_NEEDS_RECALC | CELL_HAS_NEW_EXPR );
\
}
\
}
#define cell_eval(cell)
\
do {
\
if (cell_needs_recalc (cell)) {
\
cell_eval_content (cell);
\
cell->base.flags &= ~(DEPENDENT_NEEDS_RECALC | (int)CELL_HAS_NEW_EXPR );
\
}
\
} while (0)
/**
* Utilities to assign the contents of a cell
...
...
src/dialogs/ChangeLog
View file @
3123a53b
2006-03-19 Jody Goldberg <jody@gnome.org>
* Release 1.6.3
2006-03-04 Morten Welinder <terra@gnome.org>
* dialog-stf-format-page.c (stf_dialog_format_page_init): Don't
...
...
src/gnm-style-impl.h
View file @
3123a53b
...
...
@@ -47,7 +47,7 @@ struct _GnmStyle {
GOFormat
*
format
;
GnmHAlign
h_align
;
Gnm
H
Align
v_align
;
Gnm
V
Align
v_align
;
int
indent
;
int
rotation
;
int
text_dir
;
...
...
src/tools/ChangeLog
View file @
3123a53b
2006-03-19 Jody Goldberg <jody@gnome.org>
* Release 1.6.3
2006-01-30 Jody Goldberg <jody@gnome.org>
* Release 1.6.2
...
...
src/tools/solver/ChangeLog
View file @
3123a53b
2006-03-19 Jody Goldberg <jody@gnome.org>
* Release 1.6.3
2006-01-02 Stepan Kasal <kasal@ucw.cz>
* solver.c (solver_param_destroy): Use g_slist_free to destroy the
...
...
src/tools/solver/glpk/ChangeLog
View file @
3123a53b
2006
-
03
-
19
Jody
Goldberg
<
jody
@
gnome
.
org
>
*
Release
1.6.3
2006
-
01
-
30
Jody
Goldberg
<
jody
@
gnome
.
org
>
*
Release
1.6.2
...
...
src/tools/solver/lp_solve/ChangeLog
View file @
3123a53b
2006-03-19 Jody Goldberg <jody@gnome.org>
* Release 1.6.3
2006-01-30 Jody Goldberg <jody@gnome.org>
* Release 1.6.2
...
...
src/wbc-gtk.c
View file @
3123a53b
...
...
@@ -249,7 +249,7 @@ cb_border_activated (GOActionComboPixmaps *a, WorkbookControl *wbc)
case
11
:
/* left */
borders
[
STYLE_BORDER_LEFT
]
=
style_border_fetch
(
STYLE_BORDER_THIN
,
sheet_style_get_auto_pattern_color
(
sheet
),
style_border_get_orientation
(
M
STYLE_BORDER_LEFT
));
style_border_get_orientation
(
STYLE_BORDER_LEFT
));
break
;
case
12
:
/* none */
...
...
@@ -260,7 +260,7 @@ cb_border_activated (GOActionComboPixmaps *a, WorkbookControl *wbc)
case
13
:
/* right */
borders
[
STYLE_BORDER_RIGHT
]
=
style_border_fetch
(
STYLE_BORDER_THIN
,
sheet_style_get_auto_pattern_color
(
sheet
),
style_border_get_orientation
(
M
STYLE_BORDER_RIGHT
));
style_border_get_orientation
(
STYLE_BORDER_RIGHT
));
break
;
case
21
:
/* all */
...
...
@@ -651,6 +651,8 @@ wbc_gtk_init_font_name (WBCgtk *gtk)
gtk
->
font_name
=
g_object_new
(
go_action_combo_text_get_type
(),
"name"
,
"FontName"
,
"case-sensitive"
,
FALSE
,
"stock-id"
,
GTK_STOCK_SELECT_FONT
,
"visible-vertical"
,
FALSE
,
NULL
);
context
=
gtk_widget_get_pango_context
...
...
@@ -705,8 +707,15 @@ wbc_gtk_init_font_size (WBCgtk *gtk)
gtk
->
font_size
=
g_object_new
(
go_action_combo_text_get_type
(),
"name"
,
"FontSize"
,
"stock-id"
,
GTK_STOCK_SELECT_FONT
,
"visible-vertical"
,
FALSE
,
"label"
,
_
(
"Font Size"
),
NULL
);
/* TODO: Create vertical version of this. */
font_sizes
=
go_fonts_list_sizes
();
for
(
ptr
=
font_sizes
;
ptr
!=
NULL
;
ptr
=
ptr
->
next
)
{
int
psize
=
GPOINTER_TO_INT
(
ptr
->
data
);
char
*
size_text
=
g_strdup_printf
(
"%g"
,
psize
/
(
double
)
PANGO_SCALE
);
...
...
src/wbcg-actions.c
View file @
3123a53b
...
...
@@ -1162,7 +1162,7 @@ wbcg_set_selection_valign (WorkbookControlGUI *wbcg, GnmVAlign valign)
* then revert to general */
wb_view
=
wb_control_view
(
wbc
);
style
=
wb_view
->
current_format
;
if
(
gnm_style_get_align_
h
(
style
)
==
valign
)
{
if
(
gnm_style_get_align_
v
(
style
)
==
valign
)
{
if
(
valign
==
VALIGN_BOTTOM
)
return
;
valign
=
VALIGN_BOTTOM
;
...
...
src/widgets/ChangeLog
View file @
3123a53b
2006-03-19 Jody Goldberg <jody@gnome.org>
* Release 1.6.3
2006-01-30 Jody Goldberg <jody@gnome.org>
* Release 1.6.2
...
...
src/workbook-control-gui.c
View file @
3123a53b
...
...
@@ -94,6 +94,7 @@
#include <gtk/gtkprogressbar.h>
#include <gtk/gtkstatusbar.h>
#include <gtk/gtkicontheme.h>
#include <gtk/gtktoolbutton.h>
#include <string.h>
#include <errno.h>
...
...
@@ -1030,6 +1031,8 @@ wbcg_sheet_focus (WorkbookControl *wbc, Sheet *sheet)
disconnect_sheet_signals
(
wbcg
,
wbcg_cur_sheet
(
wbcg
));
wbcg_update_menu_feedback
(
wbcg
,
sheet
);
g_object_connect
(
G_OBJECT
(
sheet
),
"signal::notify::name"
,
cb_sheet_tab_change
,
scg
->
label
,
...
...
@@ -1525,13 +1528,11 @@ static GtkWidget *
edit_area_button
(
WorkbookControlGUI
*
wbcg
,
gboolean
sensitive
,
GCallback
func
,
char
const
*
stock_id
)
{
GtkWidget
*
button
=
gtk_button_new
();
gtk_container_add
(
GTK_CONTAINER
(
button
),
gtk_image_new_from_stock
(
stock_id
,
GTK_ICON_SIZE_BUTTON
));
GTK_WIDGET_UNSET_FLAGS
(
button
,
GTK_CAN_FOCUS
);
if
(
!
sensitive
)
gtk_widget_set_sensitive
(
button
,
FALSE
);
GObject
*
button
=
g_object_new
(
GTK_TYPE_TOOL_BUTTON
,
"stock-id"
,
stock_id
,
"sensitive"
,
sensitive
,
"can-focus"
,
FALSE
,
NULL
);
g_signal_connect_swapped
(
G_OBJECT
(
button
),
"clicked"
,
...
...
tools/ChangeLog
View file @
3123a53b
2006-03-19 Jody Goldberg <jody@gnome.org>
* Release 1.6.3
2006-01-30 Jody Goldberg <jody@gnome.org>
* Release 1.6.2
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment