Kaydet (Commit) 3c1345bd authored tarafından Caolán McNamara's avatar Caolán McNamara

try a stab at remote fix for no matching function for call to make_shared

Change-Id: I029df0a94158acc5ca9705f53070d39d297b7b17
üst 341acca8
......@@ -45,6 +45,7 @@
#include <svx/dlgutil.hxx>
#include <svx/svxids.hrc> // SID_FIELD_GRABFOCUS
#include <boost/ref.hpp>
#include <boost/make_shared.hpp>
namespace
......@@ -267,7 +268,7 @@ void SvxGeneralTabPage::CreateControls ()
continue;
// creating row
vRows.push_back(boost::make_shared<Row>(
*this, vRowInfo[iRow].nTextId, eRow
boost::ref(*this), vRowInfo[iRow].nTextId, eRow
));
Row& rRow = *vRows.back();
// fields in the row
......@@ -281,7 +282,7 @@ void SvxGeneralTabPage::CreateControls ()
{
// creating edit field
vFields.push_back(boost::make_shared<Field>(
*this, vFieldInfo[iField].nEditId, iField
boost::ref(*this), vFieldInfo[iField].nEditId, iField
));
// "short name" field?
if (vFieldInfo[iField].nEditId == ED_SHORTNAME)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment