-
Notifications
You must be signed in to change notification settings - Fork 0
/
ChangeLog
15579 lines (12315 loc) · 637 KB
/
ChangeLog
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
2011-11-13 Dodji Seketeli <[email protected]>
Automatically update ChangeLog
2011-11-13 Dodji Seketeli <[email protected]>
Bump to 0.9.1 and update NEWS file
* configure.ac: Current version is not 0.9.1
* NEWS: Update for changes since 0.9.0
2011-11-20 Dodji Seketeli <[email protected]>
Handle deprecated functions on glibmm-2.4 2.30.0 and glib-2.0 2.31.0
* configure.ac: Define GLIB_DISABLE_DEPRECATION_WARNINGS if we
detect that we are building against a combination of glibmm/glib
that uses deprecated functions. Update report at the end of
configure.
* src/persp/dbgperspective/nmv-dbg-perspective.cc
(DBGPerspective::on_motion_notify_event_signal): Use the new
gdk_event_get_device_position on gtk+ >= 3.0.0 instead of the
deprecated gdk_window_get_pointer. Include config.h as the first
header in the translation unit.
* src/common/nmv-conf-manager.cc: Include config.h as the first
header in the translation unit.
* src/common/nmv-connection-manager.cc: Likewise.
* src/common/nmv-connection.cc: Likewise.
* src/common/nmv-date-utils.cc: Likewise.
* src/common/nmv-delete-statement.cc: Likewise.
* src/common/nmv-dynamic-module.cc: Likewise.
* src/common/nmv-env.cc: Likewise.
* src/common/nmv-exception.cc: Likewise.
* src/common/nmv-initializer.cc: Likewise.
* src/common/nmv-insert-statement.cc: Likewise.
* src/common/nmv-log-stream.cc: Likewise.
* src/common/nmv-option-utils.cc: Likewise.
* src/common/nmv-parsing-utils.cc: Likewise.
* src/common/nmv-plugin.cc: Likewise.
* src/common/nmv-proc-mgr.cc: Likewise.
* src/common/nmv-proc-utils.cc: Likewise.
* src/common/nmv-scope-logger.cc: Likewise.
* src/common/nmv-sql-statement.cc: Likewise.
* src/common/nmv-str-utils.cc: Likewise.
* src/common/nmv-tools.cc: Likewise.
* src/common/nmv-transaction.cc: Likewise.
* src/common/nmv-ustring.cc: Likewise.
* src/confmgr/nmv-gsettings-mgr.cc: Likewise.
* src/dbgengine/nmv-cpp-trait.cc: Likewise.
* src/dbgengine/nmv-dbg-common.cc: Likewise.
* src/dbgengine/nmv-gdbmi-parser.cc: Likewise.
* src/persp/dbgperspective/nmv-breakpoints-view.cc: Likewise.
* src/persp/dbgperspective/nmv-call-function-dialog.cc: Likewise.
* src/persp/dbgperspective/nmv-call-stack.cc: Likewise.
* src/persp/dbgperspective/nmv-choose-overloads-dialog.cc: Likewise.
* src/persp/dbgperspective/nmv-file-list.cc: Likewise.
* src/persp/dbgperspective/nmv-find-text-dialog.cc: Likewise.
* src/persp/dbgperspective/nmv-load-core-dialog.cc: Likewise.
* src/persp/dbgperspective/nmv-memory-view.cc: Likewise.
* src/persp/dbgperspective/nmv-open-file-dialog.cc: Likewise.
* src/persp/dbgperspective/nmv-preferences-dialog.cc: Likewise.
* src/persp/dbgperspective/nmv-proc-list-dialog.cc: Likewise.
* src/persp/dbgperspective/nmv-registers-view.cc: Likewise.
* src/persp/dbgperspective/nmv-remote-target-dialog.cc: Likewise.
* src/persp/dbgperspective/nmv-run-program-dialog.cc: Likewise.
* src/persp/dbgperspective/nmv-saved-sessions-dialog.cc: Likewise.
* src/persp/dbgperspective/nmv-sess-mgr.cc: Likewise.
* src/persp/dbgperspective/nmv-set-breakpoint-dialog.cc: Likewise.
* src/persp/dbgperspective/nmv-set-jump-to-dialog.cc: Likewise.
* src/persp/dbgperspective/nmv-thread-list.cc: Likewise.
* src/persp/dbgperspective/nmv-var-inspector-dialog.cc: Likewise.
* src/persp/dbgperspective/nmv-vars-treeview.cc: Likewise.
* src/persp/dbgperspective/nmv-watchpoint-dialog.cc: Likewise.
* src/uicommon/nmv-dialog.cc: Likewise.
* src/uicommon/nmv-hex-editor.cc: Likewise.
* src/uicommon/nmv-layout-manager.cc: Likewise.
* src/uicommon/nmv-layout-selector.cc: Likewise.
* src/uicommon/nmv-locate-file-dialog.cc: Likewise.
* src/uicommon/nmv-popup-tip.cc: Likewise.
* src/uicommon/nmv-spinner-tool-item.cc: Likewise.
* src/uicommon/nmv-terminal.cc: Likewise.
* src/uicommon/nmv-ui-utils.cc: Likewise.
* tests/gtkmm-test.cc: Likewise.
* tests/test-breakpoint.cc: Likewise.
* tests/test-core.cc: Likewise.
* tests/test-cpp-lexer.cc: Likewise.
* tests/test-cpp-parser.cc: Likewise.
* tests/test-deref.cc: Likewise.
* tests/test-disassemble.cc: Likewise.
* tests/test-env.cc: Likewise.
* tests/test-libtool-wrapper-detection.cc: Likewise.
* tests/test-local-vars-list.cc: Likewise.
* tests/test-stdout.cc: Likewise.
* tests/test-types.cc: Likewise.
* tests/test-unicode.cc: Likewise.
* tests/test-var-list.cc: Likewise.
* tests/test-var-path-expr.cc: Likewise.
* tests/test-var-walker.cc: Likewise.
* tests/test-variable-format.cc: Likewise.
* tests/test-varobj-walker.cc: Likewise.
* tests/test-vars.cc: Likewise.
* tests/test-watchpoint.cc: Likewise.
2011-11-19 Dodji Seketeli <[email protected]>
Bye bye gziped tarballs, welcome xz
* configure.ac: Change AM_INIT_AUTOMAKE to avoid generate gzipped
tarballs, and generate xz compressed tarballs instead.
2011-11-19 Dodji Seketeli <[email protected]>
664385 - Source code tab label completely ellipsized
2011-11-13 Dodji Seketeli <[email protected]>
Revert "Initial import of variable monitor work"
This reverts commit 11940f85da451c6b933f59e255863dba01f1001b.
2011-11-13 Dodji Seketeli <[email protected]>
Revert "Support graphically adding a variable to the monitor"
This reverts commit 5c4b2227fd2477f224120575b42776d63549cddb.
2011-11-13 Dodji Seketeli <[email protected]>
Support graphically adding a variable to the monitor
[This is not a proper commit entry. Commits on this branch are
all going to be re-hashed anyway.]
The variable inspector dialog now has a button that lets you add
the current variable/expression to the monitor. It's very rough as no
check is performed to make sure you can't add the same expression to the
monitor twice, etc. Also, once the variable is added, we face an issue
that is explained in #663959, namely the life time management of expressions
backed by variable objects. I need to address that issue separately
before getting back to this business.
2011-10-23 Dodji Seketeli <[email protected]>
Initial import of variable monitor work
This is Work In Progress. Nothing works yet, and the damin thing eats
kitties.
2011-11-13 Dodji Seketeli <[email protected]>
Fix changed variable highlighting
* src/dbgengine/nmv-i-debugger.h (Frame::operator==): Ignore
line number and instruction pointer when comparing two frames.
2011-11-13 Dodji Seketeli <[email protected]>
Fix style in nmv-var-inspector-dialog.cc
* src/persp/dbgperspective/nmv-var-inspector-dialog.cc
(Priv, build_dialog, connect_to_widget_signals)
(do_inspect_variable, inspect_variable, exists_in_history)
(erase_expression_from_history, add_to_history, get_history)
(set_history, on_var_name_changed_signal): Fix function
declaration style.
2011-11-13 Dodji Seketeli <[email protected]>
Simplify logic in nmv-local-vars-inspector.cc
* src/persp/dbgperspective/nmv-local-vars-inspector.cc
(on_stopped_signal): Simplify logic.
* src/dbgengine/nmv-i-debugger.h (IDebugger::operator==): Make
this const.
(IDebugger::operator!=): New.
2011-11-03 Marek Černocký <[email protected]>
Updated Czech translation
2011-10-25 Matej Urbančič <[email protected]>
Updated Slovenian translation
2011-10-24 Mario Blättermann <[email protected]>
[l10n] Updated German translation
2011-10-24 Daniel Mustieles <[email protected]>
Updated Spanish translation
2011-10-24 Daniel Mustieles <[email protected]>
Updated Spanish translation
2011-10-23 Matej Urbančič <[email protected]>
Updated Slovenian translation
2011-10-19 Fabien Parent <[email protected]>
659462 Handle plural form of a string
* src/persp/dbgperspective/nmv-call-stack.cc
(CallStack::Priv::append_frames_to_tree_view): Handle plural form
of a string
2011-10-19 Fabien Parent <[email protected]>
Use local time instead of UTC time
* src/common/nmv-date-utils.cc (get_current_datetime): return local time
instead of UTC time
2011-10-06 Fabien Parent <[email protected]>
646698 Add cmd line option to choose the gdb binary
* src/dbgengine/nmv-gdb-engine.cc
(GDBEngine::Priv::get_debugger_full_path): Return the path of the debugger
from the command line if specified
(GDBEngine::set_non_persistent_debugger_path): New API
* src/dbgengine/nmv-i-debugger.h
(GDBEngine::set_non_persistent_debugger_path): New API
* src/main.cc (process_gui_options): Set the debugger path from the command
line if specified in it
2011-10-03 Fabien Parent <[email protected]>
Add missing return
* src/common/nmv-buffer.h (Buffer::operator=): Add missing return
2011-10-02 Dodji Seketeli <[email protected]>
Tighten IDebugger::Frame::operator=
* src/dbgengine/nmv-i-debugger.h (IDebugger::Frame::operator=):
Compare more than just the address of the frame.
2011-10-02 Dodji Seketeli <[email protected]>
Add logging in DBGPerspective::set_where
* src/persp/dbgperspective/nmv-dbg-perspective.cc
(DBGPerspective::set_where): Add logging here.
2011-10-02 Dodji Seketeli <[email protected]>
Allow selecting current frame twice consecutively
* src/persp/dbgperspective/nmv-dbg-perspective.cc
(DBGPerspective::on_frame_selected_signal): If the current frame
was previously selected, just set the "where-marker" again.
2011-09-25 Dodji Seketeli <[email protected]>
Relax the fixed minimum sizes preventing shrinking
* data/schemas/gconf/nemiver-workbench.schemas
(/apps/nemiver/workbench/window-minimum-width)
(/apps/nemiver/workbench/window-minimum-height)
(/apps/nemiver/dbgperspective/status-widget-minimum-width)
(/apps/nemiver/dbgperspective/status-widget-minimum-height): Set these keys to
zero.
* data/schemas/gsettings/org.nemiver.gschema.xml
(window-minimum-width, window-minimum-height)
(status-widget-minimum-width, status-widget-minimum-height):
Likewise.
* src/persp/dbgperspective/nmv-dbg-perspective-default-layout.cc
(DBGPerspectiveDefaultLayout::do_lay_out): Set the default minimum
status widget size to zero.
* src/persp/dbgperspective/nmv-dbg-perspective-two-pane-layout.cc
(DBGPerspectiveTwoPaneLayout::do_lay_out): Set the default minimal
size of the two status notebooks to zero.
* src/persp/dbgperspective/nmv-dbg-perspective-wide-layout.cc
(DBGPerspectiveWideLayout::do_lay_out): Set the default minimal
size of the status widget to zero.
* src/persp/dbgperspective/nmv-dbg-perspective-dynamic-layout.cc
(DBGPerspectiveDynamicLayout::add_view): Set the default minimal
size of the terminal to zero.
* src/workbench/nmv-workbench.cc (Workbench::init_window): Set the
default minimum window size of Nemiver to zero.
2011-09-25 Dodji Seketeli <[email protected]>
Allow shrinking of the memory view widget
* src/persp/dbgperspective/nmv-memory-view.cc
(MemoryView::Priv::Priv): Renamed the m_container member into
m_vbox, and the m_scrolledwindow member into m_container. Put the
whole resulting memory view widget into a scrolled window with
automatic scrolling policy.
2011-09-25 Dodji Seketeli <[email protected]>
Minor style cleanups
* src/workbench/nmv-workbench.cc (Workbench::init_window): Add
space around '=' and fix some comments.
2011-09-25 Dodji Seketeli <[email protected]>
Update copyright file
* COPYRIGHT: Add Jonner.
2011-09-24 Jorge González <[email protected]>
Updated Spanish translation
2011-09-19 Takeshi AIHANA <[email protected]>
Updated Japanese translation.
2011-09-15 dmustieles <[email protected]>
Updated Spanish translation
2011-09-13 Andrej Žnidaršič <[email protected]>
Updated Slovenian translation
2011-09-13 Martin Srebotnjak <[email protected]>
Updated Slovenian translation
2011-09-11 Marek Černocký <[email protected]>
Updated Czech translation
2011-09-10 Dodji Seketeli <[email protected]>
Automatically update ChangeLog
* ChangeLog: Automatically update.
2011-09-09 Dodji Seketeli <[email protected]>
Prepare for 0.9.0 Release
* Makefile.am: Use master a the release branch.
* NEWS: Update for 0.9.0
* configure.ac: Bump version number to 0.9.0
2011-09-07 Dodji Seketeli <[email protected]>
Misbehaving vertically enlarging var inspector
* src/persp/dbgperspective/ui/varinspectordialog.ui: Allow the
VBox containing the variable inspector widget to expand.
2011-09-07 Dodji Seketeli <[email protected]>
Don't append the disassembly editor multiple times
* src/persp/dbgperspective/nmv-dbg-perspective.cc
(DBGPerspective::append_source_editor): Fix thinko: use path, not
the a_path that can be empty for e.g, disassembly source editor.
2011-09-04 Dodji Seketeli <[email protected]>
632305 Avoid disassembling location of pending breakpoint
* src/persp/dbgperspective/nmv-dbg-perspective.cc
(DBGPerspective::append_breakpoint): Don't try to graphically
append a /pending/ breakpoint.
2011-09-04 Dodji Seketeli <[email protected]>
constify IDebugger::Breakpoint::is_pending
* src/dbgengine/nmv-i-debugger.h
(IDebugger::Breakpoint::is_pending): Make this function const.
2011-09-04 Dodji Seketeli <[email protected]>
Don't forget to Gtk::Widget::show_all source views
* src/persp/dbgperspective/nmv-dbg-perspective.cc
(DBGPerspective::append_source_editor): Call Gtk::Widget::show_all
on the source view to add append to the source view notebook here
...
(DBGPerspective::get_or_append_asm_source_editor)
(DBGPerspective::open_file_real): ... not here.
2011-09-04 Dodji Seketeli <[email protected]>
Use DBGPerspective::append_breakpoints
* src/persp/dbgperspective/nmv-dbg-perspective.cc
(DBGPerspective::on_debugger_breakpoints_set_signal): Use
DBGPerspective::append_breakpoints
instead of walking the
breakpoints and appending them one by one.
2011-09-04 Dodji Seketeli <[email protected]>
658143 Fails to support multiple breakpoints
* src/dbgengine/nmv-i-debugger.h
(IDebugger::breakpoints_set_signal): Renamed
IDebugger::breakpoint_set_signal into this. Make it take a map of
breakpoints instead of just one.
(IDebugger::set_breakpoint): Change the type of the callback slot
so that it takes a map of breakpoints.
* src/dbgengine/nmv-gdb-engine.h
(GDBEngine::breakpoints_set_signal): Renamed
IDebugger::breakpoint_set_signal into this. Make it take a map of
breakpoints instead of just one.
(GDBEngine::set_breakpoint) Change the type of the callback slot
so that it takes a map of breakpoints.
* src/dbgengine/nmv-gdb-engine.cc
(GDBEngine::Priv::breakpoints_set_signal): Renamed
GDBEngine::Priv::breakpoint_set_signal into this. Change the
type, make it take a map of breakpoint instead of just one
breakpoint.
(OnBreakpointHandler::do_handle): Expect that the result of
setting a breakpoint can be multiple breakpoints set. Adjust code
to the callback slots taking a map of breakpoints instead of just
one breakpoint.
(GDBEngine::breakpoints_set_signal): Renamed
GDBEngine::breakpoint_set_signal into this. Make it take a map of
breakpoints instead of just one.
(GDBEngine::set_breakpoint): Change the type of the callback slot
so that it takes a map of breakpoints.
* src/persp/dbgperspective/nmv-breakpoints-view.cc
(BreakpointsView::Priv::Priv): Adjust.
(BreakpointsView::Priv::on_debugger_breakpoints_set_signal):
Renamed BreakpointsView::Priv::on_debugger_breakpoint_set_signal
into this. Adjust.
* src/persp/dbgperspective/nmv-dbg-perspective.cc
(DBGPerspective::on_break_before_jump)
(DBGPerspective::on_debugger_breakpoints_set_signal)
(DBGPerspective::init_debugger_signals): Adjust.
2011-09-04 Dodji Seketeli <[email protected]>
Fix tests/pointer-deref.c regression
* tests/test-local-vars-list.cc (on_stopped_signal): Acknowledge
that we now have 4 local variables, not 3 like before. Expect
that the types of 4 variables got set. Not 3 anymore. Step
further - until after the new variable gets instantiated - before
querying the state of the local variables.
(on_var_type_set): Acknowledge that we have a new local variable
called "b".
2011-08-31 Fabien Parent <[email protected]>
Use ATT for disassembly flavor to avoid a glade bug
* src/persp/dbgperspective/nmv-preferences-dialog.cc: Replace AT&T with ATT
* src/persp/dbgperspective/ui/preferencesdialog.ui: Likewise
2011-09-03 Dodji Seketeli <[email protected]>
644823 Cannot set BP in files with space in path
* src/dbgengine/nmv-gdb-engine.cc (GDBEngine::set_breakpoint):
Enclose the path argument to -break-insert into quotes.
2011-09-03 Dodji Seketeli <[email protected]>
Fix a typo in the coding style
* coding-style.txt: Fix typo.
2011-09-03 Dodji Seketeli <[email protected]>
Add comment to is_word_delimiter
* src/uicommon/nmv-source-editor.cc (is_word_delimiter): Add comment.
2011-09-03 Dodji Seketeli <[email protected]>
658097 Fix hovering over pointer dereference expression
* src/uicommon/nmv-source-editor.cc (parse_word_around_iter): New
function. Factorized and enhanced from ...
(SourceEditor::get_word_at_position): ... here.
* tests/pointer-deref.cc: Enhance this test to add some
de-referencing expression for testing purpose.
2011-09-02 Dodji Seketeli <[email protected]>
Fix style
* src/dbgengine/nmv-gdbmi-parser.cc
(GDBMIParser::parse_c_string_body): Fix spacing.
2011-09-02 Dodji Seketeli <[email protected]>
657834 Properly un-escape '\"' sequence
* src/dbgengine/nmv-gdbmi-parser.cc:
(GDBMIParser::parse_c_string_body): Properly handle '\"' escape
sequence of characters.
* tests/test-gdbmi.cc: (test_str4): Add new test case, and ...
(init_unit_test_suite): ... wire it.
2011-09-01 Daniel Mustieles <[email protected]>
Updated Spanish translation
2011-09-01 Mario Blättermann <[email protected]>
[l10n] Updated German translation
2011-03-02 Dodji Seketeli <[email protected]>
Avoid over reacting to pretty printing key changes
* src/persp/dbgperspective/nmv-dbg-perspective.cc
(DBGPerspective::Priv::enable_pretty_printing): New member.
(DBGPerspective::on_conf_key_changed_signal): Don't react to a
change of the value of the pretty printing key if the new value
equals the old one.
(DBGPerspective::read_default_config): Set the value of the new
member DBGPerspective::Priv::enable_pretty_printing. Also also a
couple of ";" around.
2011-03-02 Dodji Seketeli <[email protected]>
Avoid emitting useless -enable-pretty-printing
* src/dbgengine/nmv-gdb-engine.cc
(GDBEngine::Priv::pretty_printing_enabled_once): New member.
(GDBEngine::Priv::on_conf_key_changed_signal): Don't emit
-enable-pretty-printing if it has already been emitted once.
(GDBEngine::load_program): Likewise.
2011-03-01 Dodji Seketeli <[email protected]>
Support pretty printing instantly applied
* src/dbgengine/nmv-dbg-common.h (Command::should_emit_signal):
New accessor. Returns TRUE by default.
* src/dbgengine/nmv-gdb-engine.h
(GDBEngine::variable_visualized_signal)
(GDBEngine::on_rv_eval_var, GDBEngine::on_rv_unfold_var)
(GDBEngine::on_rv_set_visualizer_on_member)
(GDBEngine::on_rv_set_visualizer_on_next_sibling)
(GDBEngine::on_rv_flag)
(GDBEngine::unfold_variable_with_visualizer)
(GDBEngine::revisualize_variable)
(GDBEngine::revisualize_variable_real): Declare new functions.
(GDBEngine::create_variable, GDBEngine::unfold_variable): Declare
new overloads.
(GDBEngine::enable_pretty_printing): Rename
GDBEngine::disable_pretty_printing into this.
(GDBEngine::set_variable_visualizer): Rename
GDBEngine::set_variable_vizualizer.
* src/dbgengine/nmv-gdb-engine.cc
(GDBEngine::Priv::variable_visualized_signal): New fn.
(GDBEngine::Priv::on_conf_key_changed_signal): If pretty printing
has been enabled, send the -enable-pretty-printing command down
the wire.
(OnCommandDoneHandler::do_handle): Handle new
set-variable-visualizer command.
(OnCreateVariableHandler::do_handle): Do not emit
IDebugger:variable_created_signal if it was been requested
otherwise at command creation time.
(OnUnfoldVariableHandler::do_handle): Likewise.
(GDBEngine::variable_visualized_signal, GDBEngine::on_rv_eval_var)
(GDBEngine::on_rv_unfold_var)
(GDBEngine::on_rv_set_visualizer_on_members)
(GDBEngine::on_rv_set_visualizer_on_next_sibling)
(GDBEngine::on_rv_flag)
(GDBEngine::unfold_variable_with_visualizer)
(GDBEngine::revisualize_variable)
(GDBEngine::revisualize_variable_real): New functions.
(GDBEngine::register_names_listed_signal)
(GDBEngine::register_values_listed_signal): Re-indent return type.
Add comments.
(GDBEngine::on_detached_from_target_signal): Add ';' after
NEMIVER_TRY/CATCH_NOX. Add comments.
(GDBEngine::create_variable, GDBEngine::unfold_variable): Add
comments. Add an overload that enables disabling broadcast signal
emitting.
(GDBEngine::enable_pretty_printing): Renamed
GDBEngine::disable_pretty_printing into this. Added comments.
(GDBEngine::set_variable_vizualizer): Update comments. Fix MI
commands sending.
* src/dbgengine/nmv-i-debugger.h (IDebugger::ConstVariableSlot)
(IDebugger::ConstVariableListSlot, IDebugger::ConstUStringSlot):
Move these defines right before declaring the IDebugger::Variable
type.
(IDebugger::visualizer, IDebugger::needs_revisualizing): New
accessors.
(IDebugger::members): Add a new accessor that returns non-const
members.
(IDebugger::variable_visualized_signal): New signal.
(IDebugger::revisualize_variable): New entry point.
(IDebugger::enable_pretty_printing): Renamed
IDebugger::disable_pretty_printing into this.
* src/persp/dbgperspective/nmv-dbg-perspective.cc
(DBGPerspective::on_conf_key_changed_signal): Add comments.
Re-indent somewhat. Re-visualize the local variables of the
current function whenever the pretty-printing enabling setting
changes.
(DBGPerspective::Priv::pretty_printing_toggled): New member.
(DBGPerspective::on_conf_key_changed_signal): Set it.
(DBGPerspective::show_underline_tip_at_position): Use it.
* src/persp/dbgperspective/nmv-local-vars-inspector.h
(LocalVarsInspector::set_local_variables)
(LocalVarsInspector::show_local_variables_of_current_function):
Re-indent.
(LocalVarsInspector::visualize_local_variables_of_current_function):
New function.
* src/persp/dbgperspective/nmv-local-vars-inspector.cc
(LocalVarsInspector::Priv::append_a_function_argument): Add
logging.
(LocalVarsInspector::Priv::update_a_visualized_local_variable)
(LocalVarsInspector::Priv::update_a_visualized_function_arg)
(LocalVarsInspector::Priv::on_local_var_visualized_signal)
(LocalVarsInspector::Priv::on_function_arg_visualized_signal)
(LocalVarsInspector::visualize_local_variables_of_current_function):
New functions.
* src/persp/dbgperspective/nmv-var-inspector.h
(VarInspector::set_variable): Take a new flag to re-visualize the
variable.
* src/persp/dbgperspective/nmv-var-inspector.cc
(VarInspector::Priv::rev_visualize): New member.
(VarInspector::Priv::on_var_revisualized): New function.
(VarInspector::Priv::graphically_set_variable): Factor out from
...
(VarInspector::Priv::set_variable): ... here. Use the new
VarInspector::Priv::on_var_revisualized. Take a new flag to
re-visualize the variable.
(VarInspector::set_variable): Take a new flag to re-visualize the
variable.
* src/persp/dbgperspective/nmv-variables-utils.h ():
* src/persp/dbgperspective/nmv-variables-utils.cc
(variables_match): Consider variables with the same internal name
being equal.
(set_a_variable): Factorize out of ...
(append_a_variable): ... here.
(unlink_member_variable_rows): New function.
(visualize_a_variable): Likewise. Use set_a_variable.
* tests/test-breakpoint.cc (test_main): Adjust for the renaming of
IDebugger::enable_pretty_printing.
* tests/test-types.cc (test_main): Likewise.
* tests/test-var-path-expr.cc (test_main): Likewise.
* tests/test-vars.cc (test_main): Likewise.
2011-01-23 Dodji Seketeli <[email protected]>
Add preferences for GDB pretty printing
* src/confmgr/nmv-conf-keys.h (CONF_KEY_PRETTY_PRINTING): Declare
new conf key.
* src/confmgr/nmv-conf-keys.cc (CONF_KEY_PRETTY_PRINTING): Define
it.
* src/dbgengine/nmv-gdb-engine.cc
(GDBEngine::Priv::enable_pretty_printing): Rename
GDBEngine::Priv::disable_pretty_printing into this.
(GDBEngine::Priv::Priv, GDBEngine::load_program): Adjust.
(GDB::Engine::Priv::read_default_config): Read the value of key
CONF_KEY_PRETTY_PRINTING as well.
(GDB::Engine::Priv::on_conf_key_changed_signal): Update
GDB::Engine::Priv::enable_pretty_printing.
(GDBEngine::disable_pretty_printing): Update remote conf setting.
* src/persp/dbgperspective/nmv-preferences-dialog.cc
(PreferencesDialog::Priv::pretty_printing_check_button): New check
button.
(PreferencesDialog::Priv::on_pretty_printing_toggled_signal)
(PreferencesDialog::Priv::update_pretty_printing_key): New
functions.
(PreferencesDialog::Priv::init): Deserialize the new
PreferencesDialog::Priv::pretty_printing_check_button.
(PreferencesDialog::Priv::update_widget_from_debugger_keys): Read
the new CONF_KEY_PRETTY_PRINTING key.
* src/persp/dbgperspective/schemas/nemiver-dbgperspective.schemas:
Add new schema for key
/schemas/apps/nemiver/dbgperspective/pretty-printing.
* src/persp/dbgperspective/ui/preferencesdialog.ui: Add a check
button to enable pretty printing in the debugger preference tab.
2010-09-12 Dodji Seketeli <[email protected]>
Initialize IDebugger dynmods with gconf in tests
* src/dbgengine/nmv-debugger-utils.[h,cc]
(load_debugger_iface_with_gconf): New entry point.
* tests/test-cpptrait.cc (test_debugger)
* tests/test-deref.cc (test_main)
* tests/test-disassemble.cc (test_main)
* tests/test-local-vars-list.cc (test_main)
* tests/test-types.cc (test_main)
* tests/test-var-list.cc (test_main)
* tests/test-var-walker.cc (test_main)
* tests/test-variable-format.cc (test_main)
* tests/test-varobj-walker.cc (test_main)
* tests/test-vars.cc (test_main)
* tests/test-watchpoint.cc (test_main):
Use load_debugger_iface_with_gconf.
* tests/Makefile.am: Link all the tests loading the IDebugger
interface with $(top_builddir)/src/dbgengine/libdebuggerutils.la
2010-09-12 Dodji Seketeli <[email protected]>
Fix tests that got broken a while ago
* tests/test-types.cc (on_variable_value_signal): Update this test
b/c of a change in fooprog.cc
* tests/test-breakpoint.cc (on_stopped_signal): Likewise.
2010-09-12 Dodji Seketeli <[email protected]>
Enable GDB pretty printers by default
* src/dbgengine/nmv-i-debugger.h
(IDebugger::disable_pretty_printing)
(IDebugger::set_variable_vizualizer): New ifaces.
* src/dbgengine/nmv-gdb-engine.h
(GDBEngine::disable_pretty_printing)
(GDBEngine::set_variable_vizualizer): Likewise.
* src/dbgengine/nmv-gdb-engine.cc
(GDBEngine::Priv::disable_pretty_printing): New member.
(GDBEngine::Priv::Priv): Initialize
GDBEngine::Priv::disable_pretty_printing if
NMV_DISABLE_PRETTY_PRINTING is set.
(GDBengine::disable_pretty_printing)
(GDBEngine::set_variable_vizualizer): Implement new interfaces.
(GDBEngine::load_program): Enable GDB pretty printers by default.
* tests/test-breakpoint.cc (test_main): Disable GDB pretty
printers to keep this test working as before.
* tests/test-var-path-expr.cc (test_main): Likewise.
* tests/test-vars.cc (test_main): Likewise.
* tests/test-types.cc (test_main): Likewise.
2010-08-30 Dodji Seketeli <[email protected]>
Backend support for GDB/MI variable format
* src/dbgengine/nmv-gdbmi-parser.h (parse_variable_format):
Declare new GDBMI parser entry point.
* src/dbgengine/nmv-gdbmi-parser.cc (parse_variable_format):
Define it.
(parse_result_record): Support variable format result record. Use
parse_variable_format.
* src/dbgengine/nmv-i-debugger.h (IDebugger::Variable::Format):
New enum.
(query_variable_format, set_variable_format): Declare new entry
points.
* src/dbgengine/nmv-dbg-common.h (ResultRecord::variable_format)
(ResultRecord::has_variable_format): New accessors to support
variable format in the result record.
* src/dbgengine/nmv-debugger-utils.[cc|h] (string_to_variable_format)
(variable_format_to_string): New (de)serialization functions.
* src/dbgengine/nmv-gdb-engine.h (query_variable_format)
(set_variable_format): Likewise.
* src/dbgengine/nmv-gdb-engine.cc (query_variable_format)
(set_variable_format): Define these.
(struct OnVariableFormatHandler): New output handler.
(init_output_handlers): Add it to the list of output handlers.
* src/dbgengine/Makefile.am: Make the libgdbmod use the static lib
libdebuggerutils.
* tests/test-variable-format.cc: New test.
* tests/Makefile.am: Added new test-variable-format to the build
system. Link runtestgdbmi and runtestvarobjwalker with
libdebuggerutils.la
* tests/fooprog.cc: Add a new func1_1 to test for some variable
value. Used by the new tests/test-variable-format.cc.
2011-08-29 Piotr Drąg <[email protected]>
Updated POTFILES.in
2011-08-07 Fabien Parent <[email protected]>
577496 561100 533437 656093 564992 Support Copy/Paste/Reset on target terminal
* src/persp/dbgperspective/menus/Makefile.am: Add terminal menu file
* src/persp/dbgperspective/menus/terminalmenu.xml: New file
* src/persp/dbgperspective/nmv-dbg-perspective.cc
(DBGPerspective::get_terminal): pass the ui manager to the terminal
* src/uicommon/nmv-terminal.cc
(on_button_press_signal): New API
(Terminal::Priv::Priv): Move code into a new method init_body, and call it
along with init_actions.
(Terminal::Priv::init_body): Code moved from Terminal::Priv::Priv.
(Terminal::Priv::init_actions): New API
(Terminal::Priv::on_reset_signal): Likewise
(Terminal::Priv::on_copy_signal): Likewise
(Terminal::Priv::on_paste_signal): Likewise
(Terminal::Priv::reset): Likewise
(Terminal::Priv::copy): Likewise
(Terminal::Priv::paste): Likewise
(Terminal::Terminal): Add a new paramater
* src/uicommon/nmv-terminal.h
(Terminal::Terminal): Set constructor explicit and add a new parameter.
2011-08-29 Piotr Drąg <[email protected]>
Updated POTFILES.in
2011-07-24 Fabien Parent <[email protected]>
New Layout Manager and 3 additionals new layouts
* configure.ac: Add directives to enable/disable the building of the
dynamic layout.
* data/schemas/gconf/nemiver-dbgperspective.schemas: Add new configuration
keys for the new layouts.
* data/schemas/gsettings/org.nemiver.gschema.xml: Likewise
* src/confmgr/nmv-conf-keys.h: Likewise
* src/confmgr/nmv-gconf-keys-defs.cc: Likewise
* src/confmgr/nmv-gsettings-keys-defs.c: Likewise
* src/persp/dbgperspective/Makefile.am: Add new source files
* src/persp/dbgperspective/nmv-dbg-perspective-default-layout.cc: New API
* src/persp/dbgperspective/nmv-dbg-perspective-default-layout.h: Likewise
* src/persp/dbgperspective/nmv-dbg-perspective-dynamic-layout.cc: Likewise
* src/persp/dbgperspective/nmv-dbg-perspective-dynamic-layout.h: Likewise
* src/persp/dbgperspective/nmv-dbg-perspective-two-pane-layout.cc: Likewise
* src/persp/dbgperspective/nmv-dbg-perspective-two-pane-layout.h: Likewise
* src/persp/dbgperspective/nmv-dbg-perspective-wide-layout.cc: Likewise
* src/persp/dbgperspective/nmv-dbg-perspective-wide-layout.h: Likewise.
* src/persp/dbgperspective/nmv-dbg-perspective.cc
(DBGPerspective::on_layout_changed): New API
(DBGPerspective::init_perspective_menu_entries): Removed
(DBGPerspective::register_layouts): New API
(DBGPerspective::get_source_view_widget): New API
(DBGPerspective::set_show_context_view): Removed
(DBGPerspective::set_show_terminal_view): Likewise
(DBGPerspective::set_show_breakpoints_view): Likewise
(DBGPerspective::set_show_registers_view): Likewise
(DBGPerspective::set_show_memory_view): Likewise
(DBGPerspective::activate_status_view): Removed. Implemented in each Layout.
(DBGPerspective::Priv::Priv):
(DBGPerspective::Priv::layout): New API
(DBGPerspective::on_shutdown_signal): Call the layout's save_configuration
method.
(DBGPerspective::on_debugger_running_signal): Check pointer before using it
(DBGPerspective::on_activate_context_view): Use the new Layout Manager API
(DBGPerspective::on_activate_target_terminal_view): Likewise
(DBGPerspective::on_activate_breakpoints_view): Likewise
(DBGPerspective::on_activate_registers_view): Likewise
(DBGPerspective::on_activate_memory_view): Likewise
(DBGPerspective::init_actions): Use Renamed ViewsIndex's elements.
(DBGPerspective::init_body): Move status views initialization into the new
Layout API.
(DBGPerspective::init_signals): Connect signal
to DBGPerspective::on_layout_changed when the layout has changed.
(DBGPerspective::bring_source_as_current): Check pointer before using it.
(DBGPerspective::do_init): Call register_layouts to initialize the layout
manager.
(DBGPerspective::get_body): Use the Layout Manager to get the perspective's
body.
(DBGPerspective::edit_workbench_menu): Remove comment
(DBGPerspective::update_file_maps): Check pointer before using it.
(DBGPerspective::edit_preferences): Adapt to the new PreferencesDialog's
constructor prototype.
(DBGPerspective::layout_changed_signal): New API
(DBGPerspective::add_views_to_layout): New API
* src/persp/dbgperspective/nmv-dbg-perspective.h
(DBGPerspective::get_source_view_widget): New API
(DBGPerspective::get_conf_mgr): Add the method to the interface
(DBGPerspective::layout_changed_signal): New API
* src/persp/dbgperspective/nmv-preferences-dialog.cc
(PreferencesDialog::Priv::Priv): Take the Perspective and the LayoutManager
as parameters instead of a Workbench.
(PreferencesDialog::Priv::init): Add the LayoutSelector widget to the
preferences dialog.
(PreferencesDialog::Priv::conf_manager): Use the IPerspective to get the
configuration manager instead of the workbench.
(PreferencesDialog::PreferencesDialog): Take the Perspective and
the LayoutManager as parameters instead of a Workbench.
* src/persp/dbgperspective/nmv-preferences-dialog.h
(PreferencesDialog::PreferencesDialog): Take the Perspective and
the LayoutManager as parameters instead of a Workbench.
* src/persp/dbgperspective/ui/Makefile.am: Remove bodycontainer.ui file
* src/persp/dbgperspective/ui/bodycontainer.ui: Removed
* src/persp/dbgperspective/ui/preferencesdialog.ui: Add Layout tab
* src/persp/nmv-i-perspective.h: Add a signal when the layout changed.
* src/uicommon/Makefile.am: Add new source files and add new include
directories.
* src/uicommon/nmv-layout-manager.cc: New API
* src/uicommon/nmv-layout-manager.h: Likewise
* src/uicommon/nmv-layout-selector.cc: Likewise
* src/uicommon/nmv-layout-selector.h: Likewise
* src/uicommon/nmv-layout.h: Likewise
* src/workbench/nmv-workbench.cc
(Workbench::on_perspective_body_changed_signal): New API
(Workbench::disconnect_all_perspective_signals): New API
(Workbench::~Workbench): Disconnect perspectives layout_changed_signal
(Workbench::do_init): Attach the signal 'layout_changed_signal' when
the layout changed to the Workbench::on_perspective_layout_changed_signal
method.
2011-08-21 Dodji Seketeli <[email protected]>
657021 Wrong behaviour enlarging var inspector
* src/persp/dbgperspective/ui/varinspectordialog.ui: Don't expand
variablenameentry ComboBox when its parent expands. Likewise for
the vbox1 ancestor containing widget.
2011-07-24 Fabien Parent <[email protected]>
Remove unused status widgets
* src/persp/dbgperspective/menus/menus.xml: Remove commands, errors,
and target output menu items.
* src/persp/dbgperspective/nmv-dbg-perspective.cc
(DBGPerspective::Priv::Priv): Stop initializing commands, errors,
and target output datas.
(DBGPerspective::on_show_commands_action): Removed
(DBGPerspective::on_show_errors_action): Removed
(DBGPerspective::on_show_target_output_action): Removed
(DBGPerspective::on_insert_in_command_view_signal): Removed
(DBGPerspective::on_show_command_view_changed_signal): Removed
(DBGPerspective::on_show_target_output_view_changed_signal): Removed
(DBGPerspective::on_show_log_view_changed_signal): Removed
(DBGPerspective::on_debugger_console_message_signal): Removed
(DBGPerspective::on_debugger_target_output_message_signal): Removed
(DBGPerspective::on_debugger_log_message_signal): Removed
(DBGPerspective::on_activate_output_view): Removed
(DBGPerspective::on_activate_logs_view): Removed
(DBGPerspective::get_command_view): Removed
(DBGPerspective::get_command_view_scrolled_win): Removed
(DBGPerspective::get_target_output_view): Removed
(DBGPerspective::get_target_output_view_scrolled_win): Removed
(DBGPerspective::get_log_view): Removed
(DBGPerspective::get_log_view_scrolled_win): Removed
(DBGPerspective::set_show_command_view): Removed
(DBGPerspective::set_show_target_output_view): Removed
(DBGPerspective::set_show_log_view): Removed
(DBGPerspective::add_text_to_command_view): Removed
(DBGPerspective::add_text_to_target_output_view): Removed
(DBGPerspective::add_text_to_log_view): Removed
(DBGPerspective::show_command_view_signal): Removed
(DBGPerspective::show_target_output_view_signal): Removed
(DBGPerspective::show_log_view_signal): Removed
(DBGPerspective::on_debugger_command_done_signal): Stop updating
the command view.
(DBGPerspective::init_perspective_menu_entries): Remove code hiding
the command, log, and target output view.
(DBGPerspective::init_actions): Stop initializing the command, log,
and target output menu entries.
(DBGPerspective::init_body): Stop initializing the command, log,
and target output view.
(DBGPerspective::init_signals): Stop inializing the command, log,
and target output signals.
(DBGPerspective::init_debugger_signals): Likewise
* src/persp/dbgperspective/nmv-dbg-perspective.h
(DBGPerspective::add_text_to_command_view): Removed
(DBGPerspective::add_text_to_target_output_view): Removed
(DBGPerspective::add_text_to_log_view): Removed
2011-08-22 Fran Dieguez <[email protected]>
Added galician translations for documentation
2011-08-22 Fran Dieguez <[email protected]>
Updated Galician translations
2011-08-22 Fran Dieguez <[email protected]>
Updated Galician translations
2011-08-19 Yuri Kozlov <[email protected]>
Updated Russian translation
2011-08-05 Kalev Lember <[email protected]>
Fix build with ghex 2.90.0
* configure.ac: Depend on gtkhex-3
* src/uicommon/nmv-hex-document.h:
* src/uicommon/nmv-hex-editor.[cc,h]: When including gtkhex
headers, include the files directly without directory prefix,
because the -I from pkgconfig already specifies the directory.
2011-08-06 Mario Blättermann <[email protected]>
[l10n] Updated German translation
2011-08-06 Andrej Žnidaršič <[email protected]>
Updated Slovenian translation
2011-08-04 Daniel Mustieles <[email protected]>
Updated Spanish translation
2011-08-01 Marek Černocký <[email protected]>
Updated Czech translation
2011-07-24 Fabien Parent <[email protected]>
Fix typo
* src/persp/dbgperspective/nmv-dbg-perspective.cc
(DBGPerspective::switch_to_asm): Fix typo
2011-07-13 Fabien Parent <[email protected]>
Add GUI to change the assembly syntax
* src/persp/dbgperspective/nmv-preferences-dialog.cc
(PreferencesDialog::Priv::on_asm_flavor_changed_signal): Update
the disassembly flavor in the configuration.
(PreferencesDialog::Priv::update_asm_flavor_key): Likewise
(PreferencesDialog::Priv::on_reload_files_toggled_signal): Initialize
new widgets.
(PreferencesDialog::Priv::update_reload_files_keys): Update combobox
from the configuration.
* src/persp/dbgperspective/ui/preferencesdialog.ui: New frame for
the disassembly flavor setting.
2011-07-13 Fabien Parent <[email protected]>
Support user defined assembly syntax
* data/schemas/gconf/nemiver-dbgperspective.schemas: Add configuration key
* data/schemas/gsettings/org.nemiver.gschema.xml: Likewise
* src/confmgr/nmv-conf-keys.h: Likewise
* src/confmgr/nmv-gconf-keys-defs.cc: Likewise
* src/confmgr/nmv-gsettings-keys-defs.cc: Likewise
* src/dbgengine/nmv-gdb-engine.cc
(GDBEngine::Priv::launch_gdb_and_set_args): set the disassembly flavor
(GDBEngine::Priv::read_default_config): read the disassembly flavor from
the configuration.
(GDBEngine::Priv::on_conf_key_changed_signal): change the disassembly flavor
in case of change in the configuration.
2011-07-30 Fabien Parent <[email protected]>
Replace NULL symbol with 0
* src/common/nmv-buffer.h (Buffer::Buffer): Replace NULL symbol with 0
* src/common/nmv-conf-manager.cc (Config::~Config): Likewise
* src/common/nmv-connection.cc
(ConnectionPriv::ConnectionPriv): Likewise
(Connection::~Connection): Likewise
* src/common/nmv-date-utils.cc (get_current_datetime): Likewise
* src/common/nmv-delete-statement.cc
(DeleteStatement::~DeleteStatement): Likewise
* src/common/nmv-dynamic-module.cc
(DynamicModule::Loader::create_dynamic_module_instance): Likewise
(DynamicModule::Priv::Priv): Likewise
* src/common/nmv-insert-statement.cc
(InsertStatement::~InsertStatement): Likewise
* src/common/nmv-log-stream.cc
(OfstreamLogSink::OfstreamLogSink): Likewise
* src/common/nmv-proc-mgr.cc
(ProcMgr::get_all_process_list): Likewise
(ProcMgr::get_process_from_pid): Likewise
* src/common/nmv-proc-utils.cc (launch_program): Likewise
* src/common/nmv-safe-ptr.h