Changeset 3868e3ec1cd86c1460c96b0479c8fba10269dc6b
- Timestamp:
- 20/03/07 09:21:52
(2 years ago)
- Author:
- Jean-Paul Saman <jpsaman@videolan.org>
- git-committer:
- Jean-Paul Saman <jpsaman@videolan.org> 1174378912 +0000
- git-parent:
[e7dee28d60fc6755d5761887883a575ccd768aad]
- git-author:
- Jean-Paul Saman <jpsaman@videolan.org> 1174378912 +0000
- Message:
coding style cleanup
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| rf485214 |
r3868e3e |
|
| 177 | 177 | QApplication* pApp = new QApplication(i_argc, NULL, |
|---|
| 178 | 178 | (p_this->b_gui_server ? (QApplication::GuiServer):(QApplication::GuiClient)) ); |
|---|
| 179 | | if(pApp) |
|---|
| | 179 | if( pApp ) |
|---|
| 180 | 180 | { |
|---|
| 181 | 181 | p_this->p_qte_application = pApp; |
|---|
| … | … | |
| 183 | 183 | |
|---|
| 184 | 184 | QWidget* pWidget = new QWidget(0, _("video") ); |
|---|
| 185 | | if(pWidget) |
|---|
| | 185 | if( pWidget ) |
|---|
| 186 | 186 | { |
|---|
| 187 | 187 | p_this->p_qte_widget = pWidget; |
|---|
| … | … | |
| 195 | 195 | p_this->p_qte_application->exec(); |
|---|
| 196 | 196 | } |
|---|
| 197 | | |
|---|