Files
create/src/Mod
Jonas Bähr 22b173d0e2 Spreadsheet: fix build on macOS
The recent migration from boost::bind to std::bind [1] broke the build
on Mac (Apple clang version 13.0.0 (clang-1300.0.29.30) on macOS-11.7.8).

In all other cases the `boost::bind` was replaced by `std::bind` (among
with the place holders) but in these two spread sheet files
  src/Mod/Spreadsheet/Gui/SheetModel.cpp
  src/Mod/Spreadsheet/Gui/SpreadsheetView.cpp
the original code only referenced `bind`, which used to get resolved to
`boost::bind` but now raises this error:
> /Users/jonas/src/FreeCAD/FreeCAD-git/src/Mod/Spreadsheet/Gui/SheetModel.cpp:50:36: error: use of undeclared identifier 'bind'; did you mean 'boost::bind'?
>         sheet->cellUpdated.connect(bind(&SheetModel::cellUpdated, this, sp::_1));
>                                    ^~~~
>                                    boost::bind

This commit changes this to `std::bind` expicitly, just like it's done in
the other files. This works on my system/compiler.

[1]: 68d22d864b
2023-08-11 06:15:51 -07:00
..
2023-08-08 17:52:59 -06:00
2023-08-08 17:52:59 -06:00
2023-08-08 17:52:59 -06:00
2023-08-10 10:51:34 +02:00
2023-08-10 17:29:05 +02:00
2023-08-10 17:29:05 +02:00
2023-08-08 17:52:59 -06:00
2023-07-25 14:26:30 +02:00
2023-08-10 17:29:05 +02:00
2023-08-10 17:29:05 +02:00
2023-08-08 17:52:59 -06:00
2023-03-31 10:36:04 +02:00
2023-08-08 17:52:59 -06:00
2023-08-08 17:52:59 -06:00
2023-07-24 13:37:52 +00:00
2023-07-26 11:05:11 +02:00
2023-05-02 12:49:54 -05:00
2023-05-02 12:49:54 -05:00