Lines Matching refs:other
24 StartOptions::StartOptions(const StartOptions &other)
26 windowMode_ = other.windowMode_;
27 displayId_ = other.displayId_;
28 withAnimation_ = other.withAnimation_;
29 windowLeft_ = other.windowLeft_;
30 windowTop_ = other.windowTop_;
31 windowWidth_ = other.windowWidth_;
32 windowHeight_ = other.windowHeight_;
33 windowLeftUsed_ = other.windowLeftUsed_;
34 windowTopUsed_ = other.windowTopUsed_;
35 windowWidthUsed_ = other.windowWidthUsed_;
36 windowHeightUsed_ = other.windowHeightUsed_;
37 processOptions = other.processOptions;
38 windowFocused_ = other.windowFocused_;
39 startWindowOption = other.startWindowOption;
42 StartOptions &StartOptions::operator=(const StartOptions &other)
44 if (this != &other) {
45 windowMode_ = other.windowMode_;
46 displayId_ = other.displayId_;
47 withAnimation_ = other.withAnimation_;
48 windowLeft_ = other.windowLeft_;
49 windowTop_ = other.windowTop_;
50 windowWidth_ = other.windowWidth_;
51 windowHeight_ = other.windowHeight_;
52 windowLeftUsed_ = other.windowLeftUsed_;
53 windowTopUsed_ = other.windowTopUsed_;
54 windowWidthUsed_ = other.windowWidthUsed_;
55 windowHeightUsed_ = other.windowHeightUsed_;
56 processOptions = other.processOptions;
57 windowFocused_ = other.windowFocused_;
58 startWindowOption = other.startWindowOption;