diff options
| author | Dr. Dystopia <jonis9898@hotmail.com> | 2026-07-29 18:15:38 +0200 |
|---|---|---|
| committer | Dr. Dystopia <jonis9898@hotmail.com> | 2026-07-29 18:15:38 +0200 |
| commit | 61e97c9a099ed00261e299ddc43bc22c1479e220 (patch) | |
| tree | 7cbb009ab32a3e852676a488805bb9366ab330d2 /Source/Core/DolphinQt/Debugger | |
| parent | 73de7b8d3e59d4bef685f582d305b65bdb85a707 (diff) | |
Replace zero constants with `nullptr`
Diffstat (limited to 'Source/Core/DolphinQt/Debugger')
| -rw-r--r-- | Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp b/Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp index bdd0cc5d82..198b4db230 100644 --- a/Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp +++ b/Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp @@ -78,7 +78,7 @@ private: opt.decorationSize = QSize(0, 0); // Default draw command for paint. - QApplication::style()->drawControl(QStyle::CE_ItemViewItem, &opt, painter, 0); + QApplication::style()->drawControl(QStyle::CE_ItemViewItem, &opt, painter, nullptr); // Draw pixmap at the center of the tablewidget cell QPixmap pix = qvariant_cast<QPixmap>(index.data(Qt::DecorationRole)); |
