Index: files/patch-src_MainWindow.cpp =================================================================== --- files/patch-src_MainWindow.cpp (nonexistent) +++ files/patch-src_MainWindow.cpp (working copy) @@ -0,0 +1,15 @@ +MainWindow.cpp:157:33: error: C-style cast from 'nullptr_t' to 'GtkAccelFlags' is not allowed + (GtkAccelFlags)NULL, closure); + ^~~~~~~~~~~~~~~~~~~ + +--- src/MainWindow.cpp.orig 2018-08-25 04:31:20 UTC ++++ src/MainWindow.cpp +@@ -154,7 +154,7 @@ MainWindow::MainWindow() + closure = g_cclosure_new(G_CALLBACK(keys[key].func), (gpointer)this, NULL); + gtk_accel_group_connect(accelerators, keys[key].key, + (GdkModifierType)keys[key].modifier, +- (GtkAccelFlags)NULL, closure); ++ (GtkAccelFlags)0, closure); + g_closure_unref(closure); + } + Property changes on: files/patch-src_MainWindow.cpp ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property