mirror of
https://github.com/Chatterino/chatterino2.git
synced 2024-11-21 22:24:07 +01:00
put returns into #else to remove unreachable code warnings
This commit is contained in:
parent
1064729e1a
commit
362dcb88bc
1 changed files with 12 additions and 11 deletions
|
@ -534,9 +534,9 @@ bool BaseWindow::handleDPICHANGED(MSG *msg)
|
||||||
this->updateScale();
|
this->updateScale();
|
||||||
|
|
||||||
return true;
|
return true;
|
||||||
#endif
|
#else
|
||||||
|
|
||||||
return false;
|
return false;
|
||||||
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
bool BaseWindow::handleSHOWWINDOW(MSG *msg)
|
bool BaseWindow::handleSHOWWINDOW(MSG *msg)
|
||||||
|
@ -557,9 +557,9 @@ bool BaseWindow::handleSHOWWINDOW(MSG *msg)
|
||||||
this->calcButtonsSizes();
|
this->calcButtonsSizes();
|
||||||
|
|
||||||
return true;
|
return true;
|
||||||
#endif
|
#else
|
||||||
|
|
||||||
return false;
|
return false;
|
||||||
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
bool BaseWindow::handleNCCALCSIZE(MSG *msg, long *result)
|
bool BaseWindow::handleNCCALCSIZE(MSG *msg, long *result)
|
||||||
|
@ -583,9 +583,10 @@ bool BaseWindow::handleNCCALCSIZE(MSG *msg, long *result)
|
||||||
*result = 0;
|
*result = 0;
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
#endif
|
|
||||||
|
|
||||||
return false;
|
return false;
|
||||||
|
#else
|
||||||
|
return false;
|
||||||
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
bool BaseWindow::handleSIZE(MSG *msg)
|
bool BaseWindow::handleSIZE(MSG *msg)
|
||||||
|
@ -602,10 +603,10 @@ bool BaseWindow::handleSIZE(MSG *msg)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
return true;
|
||||||
#endif
|
#else
|
||||||
|
|
||||||
return false;
|
return false;
|
||||||
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
bool BaseWindow::handleNCHITTEST(MSG *msg, long *result)
|
bool BaseWindow::handleNCHITTEST(MSG *msg, long *result)
|
||||||
|
@ -721,9 +722,9 @@ bool BaseWindow::handleNCHITTEST(MSG *msg, long *result)
|
||||||
|
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
#endif
|
#else
|
||||||
|
|
||||||
return false;
|
return false;
|
||||||
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
} // namespace chatterino
|
} // namespace chatterino
|
||||||
|
|
Loading…
Reference in a new issue