/vqdr/trunk

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/vqdr/trunk

« back to all changes in this revision

Viewing changes to src/utils/utils.vala

  • Committer: Gustav Hartvigsson
  • Date: 2022-06-01 18:16:29 UTC
  • Revision ID: gustav.hartvigsson@gmail.com-20220601181629-meq45diu7dh8iied
Made sure that no text rows exeed 80 columns.

Show diffs side-by-side

added added

removed removed

Lines of Context:
49
49
  internal unowned StringBuilder internal_object_to_string (GLib.Object obj,
50
50
                                                  ref StringBuilder str_builder,
51
51
                                                  int32 nesting = 0) {
52
 
    GLib.ObjectClass obj_class = (GLib.ObjectClass) obj.get_type ().class_ref ();
 
52
    GLib.ObjectClass obj_class =
 
53
      (GLib.ObjectClass) obj.get_type ().class_ref ();
53
54
    
54
55
    for (var i = 0; i < nesting; i++) {
55
56
     str_builder.append ("\t");