forked from quickshell/quickshell
		
	core/process: fix stdinEnabled documentation
This commit is contained in:
		
							parent
							
								
									83afce7f68
								
							
						
					
					
						commit
						54b3d338dc
					
				
					 1 changed files with 1 additions and 1 deletions
				
			
		| 
						 | 
					@ -111,7 +111,7 @@ class Process: public QObject {
 | 
				
			||||||
	/// The parser for stderr. If the parser is null the process's stdout channel will be closed
 | 
						/// The parser for stderr. If the parser is null the process's stdout channel will be closed
 | 
				
			||||||
	/// and no further data will be read, even if a new parser is attached.
 | 
						/// and no further data will be read, even if a new parser is attached.
 | 
				
			||||||
	Q_PROPERTY(DataStreamParser* stderr READ stderrParser WRITE setStderrParser NOTIFY stderrParserChanged);
 | 
						Q_PROPERTY(DataStreamParser* stderr READ stderrParser WRITE setStderrParser NOTIFY stderrParserChanged);
 | 
				
			||||||
	/// If stdin is enabled. Defaults to true. If this property is set to false the process's stdin channel
 | 
						/// If stdin is enabled. Defaults to false. If this property is false the process's stdin channel
 | 
				
			||||||
	/// will be closed and [write](#func.write) will do nothing, even if set back to true.
 | 
						/// will be closed and [write](#func.write) will do nothing, even if set back to true.
 | 
				
			||||||
	Q_PROPERTY(bool stdinEnabled READ stdinEnabled WRITE setStdinEnabled NOTIFY stdinEnabledChanged);
 | 
						Q_PROPERTY(bool stdinEnabled READ stdinEnabled WRITE setStdinEnabled NOTIFY stdinEnabledChanged);
 | 
				
			||||||
	/// If the process should be killed when the Process object is destroyed or quickshell exits.
 | 
						/// If the process should be killed when the Process object is destroyed or quickshell exits.
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue