Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
bubnikv committed Feb 2, 2018
1 parent 4f427f8 commit 36bbd6a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions xs/xsp/GUI_Preset.xsp
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@
bool is_compatible_with_printer(Preset *active_printer)
%code%{ RETVAL = THIS->is_compatible_with_printer(*active_printer); %};

const char* name() %code%{ RETVAL = THIS->name.c_str(); %};
const char* file() %code%{ RETVAL = THIS->file.c_str(); %};
std::string name() %code%{ RETVAL = THIS->name; %};
std::string file() %code%{ RETVAL = THIS->file; %};

bool loaded() %code%{ RETVAL = THIS->loaded; %};

Expand Down

0 comments on commit 36bbd6a

Please sign in to comment.