This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/Debug/cli/cli.c b/Debug/cli/cli.c | |
index 0b9ad37..d533755 100644 | |
--- a/Debug/cli/cli.c | |
+++ b/Debug/cli/cli.c | |
@@ -58,7 +58,7 @@ CLIDict_Def( basicCLIDict, "General Commands" ) = { | |
// ----- Functions ----- | |
-inline void prompt() | |
+static inline void prompt() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import numpy as np | |
from pyqtgraph.Qt import QtGui, QtCore | |
import pyqtgraph as pg | |
app = QtGui.QApplication([]) | |
win = QtGui.QMainWindow() | |
win.resize(800,600) | |
win.show() | |
win.setWindowTitle('pyqtgraph example: Histogram LUT') |