• R/O
  • HTTP
  • SSH
  • HTTPS

Commit

Tags
No Tags

Frequently used words (click to add to your profile)

javac++androidlinuxc#windowsobjective-ccocoa誰得qtpythonphprubygameguibathyscaphec計画中(planning stage)翻訳omegatframeworktwitterdomtestvb.netdirectxゲームエンジンbtronarduinopreviewer

作図ソフト dia の改良版


Commit MetaInfo

Revisiónce9144f06a5a0e378b993dd43cb3c96eac97c9a7 (tree)
Tiempo2014-04-26 22:31:52
AutorHans Breuer <hans@breu...>
CommiterHans Breuer

Log Message

Fix some typos and white space issues

Cambiar Resumen

Diferencia incremental

--- a/objects/standard/beziergon.c
+++ b/objects/standard/beziergon.c
@@ -295,7 +295,7 @@ beziergon_create(Point *startpoint,
295295
296296 beziershape_init(bez, bcd->num_points);
297297 beziercommon_set_points (&bez->bezier, bcd->num_points, bcd->points);
298- }
298+ }
299299 beziergon->line_width = attributes_get_default_linewidth();
300300 beziergon->line_color = attributes_get_foreground();
301301 beziergon->inner_color = attributes_get_background();
--- a/plug-ins/cairo/diacairo-interactive.c
+++ b/plug-ins/cairo/diacairo-interactive.c
@@ -276,7 +276,7 @@ draw_object_highlighted (DiaRenderer *self,
276276 }
277277 /* usually this method would need to draw the object twice,
278278 * once with highlight and once without. But due to our
279- * draw_text_line implemntation we only need one run */
279+ * draw_text_line implementation we only need one run */
280280 object->ops->draw(object, self);
281281 /* always reset when done with this object */
282282 interactive->highlight_color = NULL;
--- a/plug-ins/python/allprops.py
+++ b/plug-ins/python/allprops.py
@@ -55,9 +55,9 @@ def allprops_cb(data, flags) :
5555 props_by_name[uname][1].append(oname)
5656 else :
5757 props_by_name[uname] = (p, [oname])
58- name_type_clashes.append (oname + " as " + p0.type + " and " + p.type)
58+ name_type_clashes.append (oname + "::" + p.name + " as " + p0.type + " and " + p.type)
5959 else :
60- # remember the origin of the propety
60+ # remember the origin of the property
6161 props_by_name[k][1].append(oname)
6262 except KeyError :
6363 print oname, "::", k, p, "?"