]> granicus.if.org Git - graphviz/commitdiff
Revert "smyrna: remove unused mAttributesSlot"
authorMatthew Fernandez <matthew.fernandez@gmail.com>
Sun, 25 Sep 2022 18:25:36 +0000 (11:25 -0700)
committerMatthew Fernandez <matthew.fernandez@gmail.com>
Mon, 26 Sep 2022 15:05:40 +0000 (08:05 -0700)
This reverts commit 37e430722d3981faf98b38259f320c3a36e6be4d. This function _is_
used (in share/gui/smyrna.glade). It is unclear why
37e430722d3981faf98b38259f320c3a36e6be4d claimed it was not.

Gitlab: fixes #2279
Reported-by: Gagan Sidhu <gagan@g-a.ca>
CHANGELOG.md
cmd/smyrna/gui/menucallbacks.c
cmd/smyrna/gui/menucallbacks.h

index 0ff141fe7e61b73867a31af2b4501e0f4e4833a2..3c987de5f6a213508b2d29b8f73e8f5bfdc042b1 100644 (file)
@@ -17,6 +17,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
   handlers being not found have been fixed and the buttons to which they are
   wired should be functional again. This was a regression in 2.50.0 See #2279
   for details.
+- Smyrna warnings about the `mAttributesSlot` handler being not found have been
+  fixed and the button to which it is wired should be functional again. This was
+  a regression in 2.49.2 See #2279 for details.
 
 ## [6.0.1] – 2022-09-11
 
index cc6f22d657aedd4728875236b74a402d12c6146e..0d49cd6218ee505e093fe584d4ad6844598eef08 100644 (file)
 #include <ctype.h>
 #include  "frmobjectui.h"
 
+void mAttributesSlot(GtkWidget * widget, gpointer user_data)
+{
+    showAttrsWidget(view->Topview);
+}
+
 void mOpenSlot(GtkWidget * widget, gpointer user_data)
 {
     (void)widget;
index 16589b93fb0b797601791f9b1fdd198a1485795c..af9600dc57fe66acaab23f3c6d5f8550774ad9c5 100644 (file)
@@ -13,6 +13,7 @@
 #include "gui.h"
 
 //file
+    _BB void mAttributesSlot(GtkWidget * widget, gpointer user_data);
     _BB void mOpenSlot(GtkWidget * widget, gpointer user_data);
     _BB void mSaveSlot(GtkWidget * widget, gpointer user_data);
     _BB void mSaveAsSlot(GtkWidget * widget, gpointer user_data);