+#if (GTK_MINOR_VERSION > 0)
+void gtk_myfixed_scroll_set_adjustments (GtkMyFixed *myfixed,
+ GtkAdjustment *hadj,
+ GtkAdjustment *vadj)
+{
+ /* OK, this is embarassing, but this function has to be here */
+}
+
+void
+gtk_myfixed_set_shadow_type (GtkMyFixed *myfixed,
+ GtkShadowType type)
+{
+ g_return_if_fail (myfixed != NULL);
+ g_return_if_fail (GTK_IS_MYFIXED (myfixed));
+
+ if ((GtkShadowType) myfixed->shadow_type != type)
+ {
+ myfixed->shadow_type = type;
+
+ if (GTK_WIDGET_VISIBLE (myfixed))
+ {
+ gtk_widget_size_allocate (GTK_WIDGET (myfixed), &(GTK_WIDGET (myfixed)->allocation));
+ gtk_widget_queue_draw (GTK_WIDGET (myfixed));
+ }
+ }
+}
+#endif
+