Skip to content

Commit 7f7c9e4

Browse files
SeongTae Jeongmgrojo
authored andcommitted
Rename Mac OS X to macOS in code and documents
1 parent 69eec2b commit 7f7c9e4

File tree

6 files changed

+10
-10
lines changed

6 files changed

+10
-10
lines changed

BUILDING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -236,7 +236,7 @@ databases.
236236
Before compiling make sure you have the necessary SQLCipher development files
237237
installed. On Linux this can usually be accomplished by just installing the
238238
correct package (e.g. 'libsqlcipher-dev' on Debian-based distributions). On
239-
MacOS X the easiest way is to install it via Homebrew ('brew install
239+
macOS the easiest way is to install it via Homebrew ('brew install
240240
sqlcipher'). On Windows unfortunately it's a bit more difficult: You'll have
241241
to download and compile the code as described on the
242242
[SQLCipher website](https://www.zetetic.net/sqlcipher/) before you can proceed.

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -358,7 +358,7 @@ else()
358358
set(LPTHREAD pthread)
359359
endif(WIN32)
360360

361-
#enable version check for MacOS
361+
#enable version check for macOS
362362
if(APPLE)
363363
add_definitions(-DCHECKNEWVERSION)
364364
endif(APPLE)

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -61,17 +61,17 @@ Download Windows releases here:
6161
(e.g. gives an error), try a nightly build. Nightly builds often fix bugs
6262
reported after the last release. :D
6363

64-
## MacOS X / macOS
64+
## macOS
6565

66-
DB Browser for SQLite works well on MacOS X / macOS.
66+
DB Browser for SQLite works well on macOS.
6767

68-
* OSX 10.12 (Sierra) - 10.15 (Catalina) are tested and known to work
68+
* macOS 10.12 (Sierra) - 10.15 (Catalina) are tested and known to work
6969

70-
Download OSX releases here:
70+
Download macOS releases here:
7171

7272
* https://sqlitebrowser.org/dl/#macos
7373

74-
The latest OSX binary can be installed via [Homebrew Cask](https://caskroom.github.io/ "Homebrew Cask"):
74+
The latest macOS binary can be installed via [Homebrew Cask](https://caskroom.github.io/ "Homebrew Cask"):
7575

7676
```
7777
brew cask install db-browser-for-sqlite

src/EditDialog.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -386,7 +386,7 @@ void EditDialog::importData(bool asLink)
386386
OpenDataFile,
387387
this,
388388
tr("Choose a file to import")
389-
#ifndef Q_OS_MAC // Filters on OS X are buggy
389+
#ifndef Q_OS_MAC // Filters on macOS are buggy
390390
, filters.join(";;")
391391
, &selectedFilter
392392
#endif

src/Settings.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -268,7 +268,7 @@ QVariant Settings::getDefaultValue(const std::string& group, const std::string&
268268
// editor/fontsize or log/fontsize?
269269
if((group == "editor" || group == "log") && name == "fontsize")
270270
#ifdef Q_OS_MAC
271-
// Use 12 pt size as the default on OSX
271+
// Use 12 pt size as the default on macOS
272272
return 12;
273273
#else
274274
return 9;

src/extensions/extension-functions.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ Compilation instructions:
2020
Compile this C source file into a dynamic library as follows:
2121
* Linux:
2222
gcc -fPIC -lm -shared extension-functions.c -o libsqlitefunctions.so
23-
* Mac OS X:
23+
* macOS:
2424
gcc -fno-common -dynamiclib extension-functions.c -o libsqlitefunctions.dylib
2525
(You may need to add flags
2626
-I /opt/local/include/ -L/opt/local/lib -lsqlite3

0 commit comments

Comments
 (0)