diff options
| author | 2014-12-31 23:03:15 +0100 | |
|---|---|---|
| committer | 2015-01-01 18:52:39 +0100 | |
| commit | 85c150a4fdd31424e475fe2d3982c884abe47c2e (patch) | |
| tree | 382290aef6358ccb953ef10028092a73ea49caf5 /src | |
| parent | Change popout mode to "Single Window Mode" (diff) | |
| download | yuzu-85c150a4fdd31424e475fe2d3982c884abe47c2e.tar.gz yuzu-85c150a4fdd31424e475fe2d3982c884abe47c2e.tar.xz yuzu-85c150a4fdd31424e475fe2d3982c884abe47c2e.zip | |
Make letter cases consistent in menus and widgets
In various menu options letter cases were not consistent. This was also
the case within various debugging widgets. This attempts to make letter
cases consistent, but it is of course a matter of opinion which way is the
correct one.
Diffstat (limited to 'src')
| -rw-r--r-- | src/citra_qt/debugger/callstack.cpp | 6 | ||||
| -rw-r--r-- | src/citra_qt/debugger/callstack.ui | 2 | ||||
| -rw-r--r-- | src/citra_qt/debugger/graphics_breakpoints.cpp | 2 | ||||
| -rw-r--r-- | src/citra_qt/debugger/registers.ui | 2 | ||||
| -rw-r--r-- | src/citra_qt/main.cpp | 4 | ||||
| -rw-r--r-- | src/citra_qt/main.ui | 4 |
6 files changed, 10 insertions, 10 deletions
diff --git a/src/citra_qt/debugger/callstack.cpp b/src/citra_qt/debugger/callstack.cpp index a9ec2f7fe..16c6113be 100644 --- a/src/citra_qt/debugger/callstack.cpp +++ b/src/citra_qt/debugger/callstack.cpp | |||
| @@ -14,9 +14,9 @@ CallstackWidget::CallstackWidget(QWidget* parent): QDockWidget(parent) | |||
| 14 | 14 | ||
| 15 | callstack_model = new QStandardItemModel(this); | 15 | callstack_model = new QStandardItemModel(this); |
| 16 | callstack_model->setColumnCount(4); | 16 | callstack_model->setColumnCount(4); |
| 17 | callstack_model->setHeaderData(0, Qt::Horizontal, "Stack pointer"); | 17 | callstack_model->setHeaderData(0, Qt::Horizontal, "Stack Pointer"); |
| 18 | callstack_model->setHeaderData(2, Qt::Horizontal, "Return address"); | 18 | callstack_model->setHeaderData(2, Qt::Horizontal, "Return Address"); |
| 19 | callstack_model->setHeaderData(1, Qt::Horizontal, "Call address"); | 19 | callstack_model->setHeaderData(1, Qt::Horizontal, "Call Address"); |
| 20 | callstack_model->setHeaderData(3, Qt::Horizontal, "Function"); | 20 | callstack_model->setHeaderData(3, Qt::Horizontal, "Function"); |
| 21 | ui.treeView->setModel(callstack_model); | 21 | ui.treeView->setModel(callstack_model); |
| 22 | } | 22 | } |
diff --git a/src/citra_qt/debugger/callstack.ui b/src/citra_qt/debugger/callstack.ui index b3c4db632..b0e31120f 100644 --- a/src/citra_qt/debugger/callstack.ui +++ b/src/citra_qt/debugger/callstack.ui | |||
| @@ -11,7 +11,7 @@ | |||
| 11 | </rect> | 11 | </rect> |
| 12 | </property> | 12 | </property> |
| 13 | <property name="windowTitle"> | 13 | <property name="windowTitle"> |
| 14 | <string>Call stack</string> | 14 | <string>Call Stack</string> |
| 15 | </property> | 15 | </property> |
| 16 | <widget class="QWidget" name="dockWidgetContents"> | 16 | <widget class="QWidget" name="dockWidgetContents"> |
| 17 | <layout class="QVBoxLayout" name="verticalLayout"> | 17 | <layout class="QVBoxLayout" name="verticalLayout"> |
diff --git a/src/citra_qt/debugger/graphics_breakpoints.cpp b/src/citra_qt/debugger/graphics_breakpoints.cpp index 9486f06cc..170aa736d 100644 --- a/src/citra_qt/debugger/graphics_breakpoints.cpp +++ b/src/citra_qt/debugger/graphics_breakpoints.cpp | |||
| @@ -44,7 +44,7 @@ QVariant BreakPointModel::data(const QModelIndex& index, int role) const | |||
| 44 | { Pica::DebugContext::Event::CommandProcessed, tr("Pica command processed") }, | 44 | { Pica::DebugContext::Event::CommandProcessed, tr("Pica command processed") }, |
| 45 | { Pica::DebugContext::Event::IncomingPrimitiveBatch, tr("Incoming primitive batch") }, | 45 | { Pica::DebugContext::Event::IncomingPrimitiveBatch, tr("Incoming primitive batch") }, |
| 46 | { Pica::DebugContext::Event::FinishedPrimitiveBatch, tr("Finished primitive batch") }, | 46 | { Pica::DebugContext::Event::FinishedPrimitiveBatch, tr("Finished primitive batch") }, |
| 47 | { Pica::DebugContext::Event::VertexLoaded, tr("Vertex Loaded") } | 47 | { Pica::DebugContext::Event::VertexLoaded, tr("Vertex loaded") } |
| 48 | }; | 48 | }; |
| 49 | 49 | ||
| 50 | _dbg_assert_(Debug_GPU, map.size() == static_cast<size_t>(Pica::DebugContext::Event::NumEvents)); | 50 | _dbg_assert_(Debug_GPU, map.size() == static_cast<size_t>(Pica::DebugContext::Event::NumEvents)); |
diff --git a/src/citra_qt/debugger/registers.ui b/src/citra_qt/debugger/registers.ui index 6537c9cd6..c81ae03f9 100644 --- a/src/citra_qt/debugger/registers.ui +++ b/src/citra_qt/debugger/registers.ui | |||
| @@ -11,7 +11,7 @@ | |||
| 11 | </rect> | 11 | </rect> |
| 12 | </property> | 12 | </property> |
| 13 | <property name="windowTitle"> | 13 | <property name="windowTitle"> |
| 14 | <string>ARM registers</string> | 14 | <string>ARM Registers</string> |
| 15 | </property> | 15 | </property> |
| 16 | <widget class="QWidget" name="dockWidgetContents"> | 16 | <widget class="QWidget" name="dockWidgetContents"> |
| 17 | <layout class="QVBoxLayout" name="verticalLayout"> | 17 | <layout class="QVBoxLayout" name="verticalLayout"> |
diff --git a/src/citra_qt/main.cpp b/src/citra_qt/main.cpp index d9f325b09..5864f1f9d 100644 --- a/src/citra_qt/main.cpp +++ b/src/citra_qt/main.cpp | |||
| @@ -175,13 +175,13 @@ void GMainWindow::BootGame(std::string filename) | |||
| 175 | 175 | ||
| 176 | void GMainWindow::OnMenuLoadFile() | 176 | void GMainWindow::OnMenuLoadFile() |
| 177 | { | 177 | { |
| 178 | QString filename = QFileDialog::getOpenFileName(this, tr("Load file"), QString(), tr("3DS executable (*.3dsx *.elf *.axf *.bin *.cci *.cxi)")); | 178 | QString filename = QFileDialog::getOpenFileName(this, tr("Load File"), QString(), tr("3DS executable (*.3dsx *.elf *.axf *.bin *.cci *.cxi)")); |
| 179 | if (filename.size()) | 179 | if (filename.size()) |
| 180 | BootGame(filename.toLatin1().data()); | 180 | BootGame(filename.toLatin1().data()); |
| 181 | } | 181 | } |
| 182 | 182 | ||
| 183 | void GMainWindow::OnMenuLoadSymbolMap() { | 183 | void GMainWindow::OnMenuLoadSymbolMap() { |
| 184 | QString filename = QFileDialog::getOpenFileName(this, tr("Load symbol map"), QString(), tr("Symbol map (*)")); | 184 | QString filename = QFileDialog::getOpenFileName(this, tr("Load Symbol Map"), QString(), tr("Symbol map (*)")); |
| 185 | if (filename.size()) | 185 | if (filename.size()) |
| 186 | LoadSymbolMap(filename.toLatin1().data()); | 186 | LoadSymbolMap(filename.toLatin1().data()); |
| 187 | } | 187 | } |
diff --git a/src/citra_qt/main.ui b/src/citra_qt/main.ui index 4c338c664..d06c207a0 100644 --- a/src/citra_qt/main.ui +++ b/src/citra_qt/main.ui | |||
| @@ -75,12 +75,12 @@ | |||
| 75 | <widget class="QStatusBar" name="statusbar"/> | 75 | <widget class="QStatusBar" name="statusbar"/> |
| 76 | <action name="action_Load_File"> | 76 | <action name="action_Load_File"> |
| 77 | <property name="text"> | 77 | <property name="text"> |
| 78 | <string>Load file...</string> | 78 | <string>Load File...</string> |
| 79 | </property> | 79 | </property> |
| 80 | </action> | 80 | </action> |
| 81 | <action name="action_Load_Symbol_Map"> | 81 | <action name="action_Load_Symbol_Map"> |
| 82 | <property name="text"> | 82 | <property name="text"> |
| 83 | <string>Load symbol map...</string> | 83 | <string>Load Symbol Map...</string> |
| 84 | </property> | 84 | </property> |
| 85 | </action> | 85 | </action> |
| 86 | <action name="action_Exit"> | 86 | <action name="action_Exit"> |