Skip to content

Commit

Permalink
Remove macro padding
Browse files Browse the repository at this point in the history
  • Loading branch information
Timi007 committed Dec 25, 2023
1 parent 3d756b9 commit 8f26b1e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion addons/presentation/ui/mts_presentation_dialog.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ class IGUIBack;
class GVAR(dialog) {
idd = IDD_MAIN_DISPLAY;
movingEnable = 0;
OnLoad = QUOTE(((_this select 0) displayctrl IDC_LISTBOX) ctrlAddEventHandler [ARR_2('LBSelChanged', {_this call FUNC(fillSlidesCombo); _this call FUNC(toggleContinueButton)})];);
OnLoad = QUOTE(((_this select 0) displayctrl IDC_LISTBOX) ctrlAddEventHandler [ARR_2('LBSelChanged',{_this call FUNC(fillSlidesCombo); _this call FUNC(toggleContinueButton)})];);

class Button: RscShortcutButton {
type = 16;
Expand Down
4 changes: 2 additions & 2 deletions addons/presentation/ui/mts_presentation_display.hpp
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
class RscTitles {
class GVAR(curSlideDisplay) {
idd = IDD_CURRENT_SLIDE_DISPLAY;
OnLoad = QUOTE(uiNamespace setVariable [ARR_2(QQGVAR(curSlideDisplay), _this select 0)]);
OnLoad = QUOTE(uiNamespace setVariable [ARR_2(QQGVAR(curSlideDisplay),_this select 0)]);
duration = "1e+011";

class controls {
Expand All @@ -15,7 +15,7 @@ class RscTitles {
};
class GVAR(previewNextSlideDisp) {
idd = IDD_PREVIEW_NEXT_SLIDE_DISPLAY;
OnLoad = QUOTE(uiNamespace setVariable [ARR_2(QQGVAR(previewNextSlideDisp), _this select 0)]);
OnLoad = QUOTE(uiNamespace setVariable [ARR_2(QQGVAR(previewNextSlideDisp),_this select 0)]);
duration = "1e+011";

class controls {
Expand Down

0 comments on commit 8f26b1e

Please sign in to comment.