Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 1 addition & 12 deletions .github/workflows/deploy_docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,19 +31,8 @@ jobs:
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Install dependencies
run: |
sudo apt-get install -qq mono-complete
wget https://www.naturaldocs.org/download/natural_docs/2.3/Natural_Docs_2.3.zip -O /tmp/ND.zip
unzip /tmp/ND.zip -d /tmp
- name: Setuop Project for NaturalDocs
run: |
mkdir ${GITHUB_WORKSPACE}/docs
mkdir ${GITHUB_WORKSPACE}/.ND_Config
cp .nd_project.txt ${GITHUB_WORKSPACE}/.ND_Config/Project.txt
- name: Build with NaturalDocs
run: |
mono /tmp/Natural\ Docs/NaturalDocs.exe ${GITHUB_WORKSPACE}/.ND_Config
uses: Vba-actions/NaturalDocs-build-pages@main
- name: Upload artifact
uses: actions/upload-pages-artifact@v2
with:
Expand Down
2 changes: 2 additions & 0 deletions src/ClassModules/SQLCondition.cls
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,8 @@ Public Function Create(Expression1, Expression2, Optional Operator As String = "
sOperator = Operator
End Function

' Function: toString
' Render the object to a SQL string.
Public Function toString() As String
Dim OperatorString As String
If sOperator = "IS" Then
Expand Down